Using Camel 2.19.3 REST DSL with Spring Boot
We want a Camel route to listen on the endpoint /myservice
(note, No base path like /rest/myservice or /camel/myservice)
Meanwhile, we also want the Spring Boot actuator endpoints to work,
e.g. /health
Is there a way to do this, if we use Camel Servlet as the component?
Our web.xml does not work with:
<servlet>
<servlet-name>CamelServlet</servlet-name>
<servlet-class>org.apache.camel.component.servlet.CamelHttpTransportServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>CamelServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
The Camel REST service works, but the Spring actuator endpoints do not.