真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot怎么注冊(cè)Servlet、Filter、Listener

這篇文章主要為大家展示了“SpringBoot怎么注冊(cè)Servlet、Filter、Listener”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“SpringBoot怎么注冊(cè)Servlet、Filter、Listener”這篇文章吧。

創(chuàng)新互聯(lián)公司專注于于都網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供于都營(yíng)銷型網(wǎng)站建設(shè),于都網(wǎng)站制作、于都網(wǎng)頁(yè)設(shè)計(jì)、于都網(wǎng)站官網(wǎng)定制、小程序開(kāi)發(fā)服務(wù),打造于都網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供于都網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。

        在Servlet 3.0之前都是使用web.xml文件進(jìn)行配置,需要增加Servlet、Filter或者Listener都需要在web.xml增加相應(yīng)的配置。Servlet 3.0之后可以使用注解進(jìn)行配置Servlet、Filter或者Listener;springboot也提供了使用代碼進(jìn)行注冊(cè)Servlet、Filter或者Listener。所以springboot有兩種方式進(jìn)行Servlet、Filter或者Listener配置。

方式一:使用注解

(1)注冊(cè)Servlet

       使用@WebServlet注冊(cè),需要在Servlet類上使用該注解即可,但是需要在@Configuration類中使用Spring Boot提供的注解@ServletComponentScan掃描注冊(cè)相應(yīng)的Servlet。

(2)  注冊(cè)Filter

        使用@WebFilter注冊(cè),需要在Filter類上使用該注解即可,但是需要在@Configuration類中使用Spring Boot提供的注解@ServletComponentScan掃描注冊(cè)相應(yīng)的Filter。

(3)注冊(cè)Listener

         使用@WebListener注冊(cè),需要在Filter類上使用該注解即可,但是需要在@Configuration類中使用Spring Boot提供的注解@ServletComponentScan掃描注冊(cè)相應(yīng)的Listener。

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

(1)注冊(cè)Servlet

       使用ServletRegistrationBean注冊(cè)只需要在@Configuration類中加入類似以下的代碼

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

}

(2)  注冊(cè)Filter

        使用FilterRegistrationBean注冊(cè)Filter,只需要在@Configuration類中加入類似以下的代碼:

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

}

(3)注冊(cè)Listener 

        使用ServletListenerRegistrationBean注冊(cè)Listener只需要在@Configuration類中加入類似以下的代碼:

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

}

以上是“SpringBoot怎么注冊(cè)Servlet、Filter、Listener”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)頁(yè)標(biāo)題:SpringBoot怎么注冊(cè)Servlet、Filter、Listener
當(dāng)前路徑:http://weahome.cn/article/popchh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部