Spring Boot中如何添加自定义 Servlet

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值