mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Prior to this commit, `EndpointRequest` exposed factory methods for creating security matchers in the context of Actuator endpoints. This is using the popular pattern matching approach for security matchers. Such matchers are not as focused as method-level security and will match the endpoint path itself (`"actuator/endpoint"`) as well as everything beneath it (`"actuator/endpoint/**"`). This commit improves the Javadoc and reference documentation to make this behavior more explicit. Closes gh-49520