Skip to content
Advertisement

SpringBoot Actuator getting overshadowed by BaseService Servlet on same Port

We are Attempting to Migrate Our Existing Spring WebServices App to SpringBoot and ran into an issue for which we seek your advice.

We have a Base Service Servlet that disables the GET on the port that the App is deployed on for Security reasons this servlet returns 501 Unimplemented Response as follows:

JavaScript
JavaScript

Previously we had an old-fashioned HealthCheck JSP that we implemented. With the move to SpringBoot we are now using the SpringBoot Actuator.

But we find that if we set the Actuator health monitor port to the same one as the App when we try to monitor the health we get the 501 Unimplemented response.

Config is as follows:

JavaScript

One way we could get around this problem is if we changed the actuator health check port to something else that Works.

Question: How can we set the Actuator port to be the same as the App and make the actuator health check url which is something like http://localhost:8080/manage/health not return 501 Unimplemented from the Base Service Servlet ?

Advertisement

Answer

We can register DispatcherServlet with health endpoint in mapping before the ServiceServlet.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement