I want to enable jolokia on Spring Boot application but seems I am not able to do that with jolokia-core dependency https://mvnrepository.com/artifact/org.jolokia/jolokia-core. I was able to do that with 2.x.x releases of Spring Boot. Any changes required to enable this endpoint?
Enabled jolokia on 2.x.x
Support for Jolokia was dropped from Spring Boot since Jolokia didn't support Servlet API 5.0 yet (see issue). Jolokia will add support for the new Servlet API with release 2.0 (see issue).
So to answer your question: it's currently not possible to enable the
/actuator/jolokia
endpoint within Spring Boot 3.x. You'll have to wait until Jolokia releases v2.0, and then for a new Spring Boot version that will re-enable support.