Spring Boot中如何添加自定义 Servlet
如果想在SpringBoot启动的应用中添加自己的Servlet,首先需要了解 Servlet Container(默认Tomcat)的启动过程,与 Servlet Container 启动相关的初始化类参考下面的文章。
Spring Web - 与 ServletContainer 初始化相关的 Initializer
如果需要添加Servlet配置,需要编写ServletRegistrationBean的实现类并注册到BeanFactory。
Camel中的应用示例
Camel提供Rest服务时支持几种方式,其中一种是 servlet,其实现原理就是在 Tomcat 容器中添加自定义的 Servlet - CamelServlet,将所有通过 servlet component 定义的 rest 服务转发到该 CamelServlet 进行处理。其代码如下:
@Configuration(proxyBeanMethods = false)
@ConditionalOnProperty(name = "camel.component.servlet.mapping.enabled", matchIfMissing = true)
@ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
@AutoConfigureAfter(name = "org.apache.camel.spring.boot.CamelAutoConfiguration")
@ConditionalOnWebApplication
@EnableConfigurationProperties(ServletMappingConfiguration.class)
public class ServletMappingAutoConfiguration {
@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;
}
}
参考
Spring Web - 与 ServletContainer 初始化相关的 Initializer
Camel SERVLET Component