You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ such as for Handling Security, OpenAPI and Dao related exceptions, which are ela
69
69
70
70
## Controller Advices
71
71
72
-
#### General advices recommended for Spring Rest services need to handle
72
+
#### General advices recommended for all Spring Rest services
73
73
74
74
These advices are autoconfigured as either bean of type [**`ProblemHandlingWeb`**](src/main/java/com/ksoot/problem/spring/advice/web/ProblemHandlingWeb.java)
75
75
or [**`ProblemHandlingWebflux`**](src/main/java/com/ksoot/problem/spring/advice/webflux/ProblemHandlingWebflux.java) depending on whether application is type **Spring Web** or **Spring Webflux** respectively.
@@ -140,7 +140,7 @@ These advices are autoconfigured as a bean `DaoExceptionHandler` if following co
140
140
> [!NOTE]
141
141
> Database type must be specified in `application.properties` in case application is using some relational database,
142
142
it is used to autoconfigure [**`ConstraintNameResolver`**](src/main/java/com/ksoot/problem/spring/advice/dao/ConstraintNameResolver.java)
143
-
to extract database constraint name from exception message to derive error key
143
+
to extract database constraint name from exception message to derive [*Error key*](https://github.com/officiallysingh/spring-boot-problem-handler#error-key)
144
144
when database constraint violation exceptions are thrown.
145
145
146
146
#### Security advices
@@ -189,8 +189,8 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
0 commit comments