Browse Source

Fix Broken JavaDoc Link

Issue gh-16886
pull/17322/head
Josh Cummings 7 months ago
parent
commit
ce107795d8
No known key found for this signature in database
GPG Key ID: 869B37A20E876129
  1. 2
      docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

2
docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

@ -1084,7 +1084,7 @@ open class SecurityConfig { @@ -1084,7 +1084,7 @@ open class SecurityConfig {
<3> Allow access to URLs that start with `/api/admin/` to users with the `ADMIN` role
<4> Any other request that doesn't match the rules above, will require authentication
The `securityMatcher(s)` and `requestMatcher(s)` methods will construct ``RequestMatcher``s using a javadoc:org.springframework.security.web.util.matcher.PathPatternRequestMatcher.Builder[] bean, if available.
The `securityMatcher(s)` and `requestMatcher(s)` methods will construct ``RequestMatcher``s using a javadoc:org.springframework.security.web.servlet.util.matcher.PathPatternRequestMatcher$Builder[] bean, if available.
You can read more about the Spring MVC integration xref:servlet/integrations/mvc.adoc[here].
If you want to use a specific `RequestMatcher`, just pass an implementation to the `securityMatcher` and/or `requestMatcher` methods:

Loading…
Cancel
Save