In my project, I don't want to use @EnableAutoConfiguration
. My Application.java has @ComponentScan
, @Configuration
and @Import
annotation.
I have added spring boot actuator dependency in my pom.xml. But, when I try to access http://<>/acutuator/health
, I get 404. I believe I need to specify some config class as part of Import annotation. I would need help in figuring out what that config would be.