Closed as not planned
Description
Unable to enable startup
actuator endpoint on Spring Boot 3.4.5.
Both management.endpoints.web.exposure.include=*
and management.endpoint.startup.access=read_only
fail.
How to reproduce:
- Generate a new application at start.spring.io
- with Maven/Java/3.4.5/Jar/21
- add Spring web and Spring Boot Actuator
- Add
management.endpoints.web.exposure.include=*
toapplication.properties
- Compile and run application.
- Observe
404
oncurl 'http://localhost:8080/actuator/startup' -i -X GET
:
HTTP/1.1 404
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 21 May 2025 14:16:34 GMT
{"timestamp":"2025-05-21T14:16:34.430+00:00","status":404,"error":"Not Found","path":"/actuator/startup"}