mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 18:29:03 +00:00
Prior to this commit, the Servlet and Reactive CloudFoundry Actuator Handler mapping would only handle requests to actual Actuator endpoints. Here, our original intent has always been to reserve this URL namespace for the CloudFoundry use case and not delegate to other handler mappings. This commit ensures that requests under this path should be processed by known endpoints, or result in a "HTTP 403 Forbidden" response. Fixes gh-49645