use of org.apache.camel.component.servlet.CamelHttpTransportServlet in project camel by apache.
the class Application method servletRegistrationBean.
@Bean
ServletRegistrationBean servletRegistrationBean() {
ServletRegistrationBean servlet = new ServletRegistrationBean(new CamelHttpTransportServlet(), "/camel-rest-jpa/*");
servlet.setName("CamelServlet");
return servlet;
}
use of org.apache.camel.component.servlet.CamelHttpTransportServlet in project camel by apache.
the class ServletMappingAutoConfiguration method servletRegistrationBean.
@Bean
ServletRegistrationBean servletRegistrationBean(ServletMappingConfiguration config) {
ServletRegistrationBean mapping = new ServletRegistrationBean();
mapping.setServlet(new CamelHttpTransportServlet());
mapping.addUrlMappings(config.getContextPath());
mapping.setName(config.getServletName());
mapping.setLoadOnStartup(1);
return mapping;
}
use of org.apache.camel.component.servlet.CamelHttpTransportServlet in project camel by apache.
the class Application method camelServletRegistrationBean.
@Bean
public ServletRegistrationBean camelServletRegistrationBean() {
ServletRegistrationBean registration = new ServletRegistrationBean(new CamelHttpTransportServlet(), "/camel/*");
registration.setName("CamelServlet");
return registration;
}
Aggregations