网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

SpringBoot怎么注册Servlet、Filter、Listener

这篇文章主要为大家展示了“SpringBoot怎么注册Servlet、Filter、Listener”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“SpringBoot怎么注册Servlet、Filter、Listener”这篇文章吧。

创新互联公司专注于于都网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供于都营销型网站建设,于都网站制作、于都网页设计、于都网站官网定制、小程序开发服务,打造于都网络公司原创品牌,更为您提供于都网站排名全网营销落地服务。

        在Servlet 3.0之前都是使用web.xml文件进行配置,需要增加Servlet、Filter或者Listener都需要在web.xml增加相应的配置。Servlet 3.0之后可以使用注解进行配置Servlet、Filter或者Listener;springboot也提供了使用代码进行注册Servlet、Filter或者Listener。所以springboot有两种方式进行Servlet、Filter或者Listener配置。

方式一:使用注解

(1)注册Servlet

       使用@WebServlet注册,需要在Servlet类上使用该注解即可,但是需要在@Configuration类中使用Spring Boot提供的注解@ServletComponentScan扫描注册相应的Servlet。

(2)  注册Filter

        使用@WebFilter注册,需要在Filter类上使用该注解即可,但是需要在@Configuration类中使用Spring Boot提供的注解@ServletComponentScan扫描注册相应的Filter。

(3)注册Listener

         使用@WebListener注册,需要在Filter类上使用该注解即可,但是需要在@Configuration类中使用Spring Boot提供的注解@ServletComponentScan扫描注册相应的Listener。

方式二:使用spring提供的方式

(1)注册Servlet

       使用ServletRegistrationBean注册只需要在@Configuration类中加入类似以下的代码

@Bean
public ServletRegistrationBean regServlet() {
        ServletRegistrationBean userServlet= new ServletRegistrationBean();
        userServlet.addUrlMappings("/servlet");
        userServlet.setServlet(new UserServlet());
        return userServlet;

}

(2)  注册Filter

        使用FilterRegistrationBean注册Filter,只需要在@Configuration类中加入类似以下的代码:

@Bean
    public FilterRegistrationBean regFilter() {
        FilterRegistrationBean userFilter = new FilterRegistrationBean();
        userFilter .addUrlPatterns("/*");
        userFilter .setFilter(new UserFilter ());
        return userFilter ;

}

(3)注册Listener 

        使用ServletListenerRegistrationBean注册Listener只需要在@Configuration类中加入类似以下的代码:

@Bean
    public ServletListenerRegistrationBean regServletListener() {
        ServletListenerRegistrationBean loginSessionListener= new ServletListenerRegistrationBean();
        loginSessionListener.setListener(new LoginSessionListener());
        return loginSessionListener;

}

以上是“SpringBoot怎么注册Servlet、Filter、Listener”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!


分享标题:SpringBoot怎么注册Servlet、Filter、Listener
标题链接:http://bjjierui.cn/article/popchh.html

其他资讯