I'm using Jersey starter in my web application.
org.springframework.boot spring-boot-starter-jersey 1.4.2.RELEASE
Trying to integrate the Actuator endpoints into my application.Used the following maven dependency
org.springframework.boot spring-boot-starter-actuator 1.5.2.RELEASE org.springframework.boot spring-boot-starter-web 1.5.2.RELEASE
When I access the health endpoint, it was giving me 404 error. http://localhost:8080/context/health
Do I need to add any other configuration class to my application that will initialize the actuator? Can anyone point me in the correct direction?