Skip to content

Actuator - startup endpoint is not showing up #45637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
askvortcov opened this issue May 21, 2025 · 1 comment
Open

Actuator - startup endpoint is not showing up #45637

askvortcov opened this issue May 21, 2025 · 1 comment
Labels
status: waiting-for-feedback We need additional information before we can continue status: waiting-for-triage An issue we've not yet triaged

Comments

@askvortcov
Copy link

askvortcov commented May 21, 2025

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:

  1. Generate a new application at start.spring.io
    • with Maven/Java/3.4.5/Jar/21
    • add Spring web and Spring Boot Actuator
  2. Add management.endpoints.web.exposure.include=* to application.properties
  3. Compile and run application.
  4. Observe 404 on curl '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"}
@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label May 21, 2025
@wilkinsona
Copy link
Member

The startup endpoint requires the use of BufferingApplicationStartup. Judging by your reproduction steps, you are not using it. If you start your application with --debug you should see a pointer about this in the resulting condition evaluation report for StartupEndpointAutoConfiguration.

@wilkinsona wilkinsona added the status: waiting-for-feedback We need additional information before we can continue label May 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: waiting-for-feedback We need additional information before we can continue status: waiting-for-triage An issue we've not yet triaged
Projects
None yet
Development

No branches or pull requests

3 participants