Skip to content

Commit

Permalink
Update docs to reflect new no handler found exception behavior
Browse files Browse the repository at this point in the history
Closes gh-42164
  • Loading branch information
wilkinsona committed Sep 6, 2024
1 parent 4f57603 commit f813079
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ The strategy can be configured using the configprop:spring.mvc.pathmatch.matchin
matching-strategy: "ant-path-matcher"
----

By default, Spring MVC will send a 404 Not Found error response if a handler is not found for a request.
To have a `NoHandlerFoundException` thrown instead, set configprop:spring.mvc.throw-exception-if-no-handler-found to `true`.
Spring MVC will throw a `NoHandlerFoundException` if a handler is not found for a request.
Note that, by default, the <<web#web.servlet.spring-mvc.static-content, serving of static content>> is mapped to `+/**+` and will, therefore, provide a handler for all requests.
For a `NoHandlerFoundException` to be thrown, you must also set configprop:spring.mvc.static-path-pattern[] to a more specific value such as `/resources/**` or set configprop:spring.web.resources.add-mappings[] to `false` to disable serving of static content entirely.
If no static content is available, `ResourceHttpRequestHandler` will throw a `NoResourceFoundException`.
For a `NoHandlerFoundException` to be thrown, set configprop:spring.mvc.static-path-pattern[] to a more specific value such as `/resources/**` or set configprop:spring.web.resources.add-mappings[] to `false` to disable serving of static content entirely.



Expand Down

0 comments on commit f813079

Please sign in to comment.