0

I have recently updated my spring-boot project to 2.7.5 from 2.0 version, i got some documentationPluginsBootstrapper related error and swagger did't open.

with this link i have added bean and new property in properties file, than it started workig fine..

Spring Boot 2.6.0 / Spring fox 3 - Failed to start bean 'documentationPluginsBootstrapper'

i have actuator dependency in my project(i can't remove the dependency) for actuator/health endpoint im getting status code down..

I'm getting like this for working url

{"groups":[],"status":{"code":"DOWN","description":""}}

dur
  • 15,689
  • 25
  • 79
  • 125
  • enable management endpoint health details, then you will know what's causing this status to be down. Add this to your application.properties `management.endpoint.health.show-details=always` and query the health endpoint to see detailed answer. If you wish you can disable the problematic healthcheck with `management.health.{key}.enabled=false` more info here: https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.endpoints.health – szymon_prz Jan 18 '23 at 12:55

1 Answers1

0

Need to Add the below on your config file properties/yaml :

management.endpoint.health.show-details=always
  • Somewhat solved my issue, as i mentinoed above is there any other way of doing.. without adding new parameter in config file.... – Ragnar_viking Jan 19 '23 at 10:53