溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

springboot省去web.xml配置的方法是什么

發(fā)布時(shí)間:2021-12-29 09:32:50 來(lái)源:億速云 閱讀:254 作者:iii 欄目:軟件技術(shù)

這篇文章主要講解了“springboot省去web.xml配置的方法是什么”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“springboot省去web.xml配置的方法是什么”吧!

概述

最開始使用原生的springmvc時(shí),總是免不了有如下xml配置

<!-- Spring MVC配置 --><!-- ====================================== --><servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup></servlet><servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/*</url-pattern></servlet-mapping>
  <!-- Spring配置 --><!-- ====================================== --><listener>
   <listenerclass>
 org.springframework.web.context.ContextLoaderListener   </listener-class></listener>
  <!-- 指定Spring Bean的配置文件所在目錄。默認(rèn)配置在WEB-INF目錄下 --><context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:config/applicationContext.xml</param-value></context-param>

但是,切換到springboot之后,web.xml之類的繁瑣的配置基本上都不見了。出于好奇研究了下springboot究竟幫我們做了什么,我們可以免于這樣的繁瑣配置。

Servlet3.0規(guī)范

首先研究的第一點(diǎn),為什么web.xml不見了。剛開始使用原生servlet(不使用web框架),web.xml就是非常重要的一個(gè)配置,無(wú)論是servlet、filter、listener都需要在web.xml里面配置下。

但是在servlet3.0里,這個(gè)配置得到了簡(jiǎn)化??梢酝ㄟ^(guò)java配置(注解等)省去web.xml配置。

具體servlet3.0的規(guī)范這里就不討論了,說(shuō)下其中一個(gè)非常重要的類。javax.servlet.ServletContainerInitializer

這個(gè)類會(huì)在web容器啟動(dòng)階段被回調(diào),可以在onStartup方法里做一些servlet、filter、listener的注冊(cè)等操作。

/**
Interface which allows a library/runtime to be notified of a web application's startup phase and perform any required programmatic registration of servlets, filters, and listeners in response to it.
*/public interface ServletContainerInitializer {
    public void onStartup(Set<Class<?>> c, ServletContext ctx)
        throws ServletException; }

springboot的實(shí)現(xiàn)

首先spring在META-INF/services下配置了這個(gè)類,讓整個(gè)web容器啟動(dòng)后可以找到并啟動(dòng)這個(gè)類

springboot省去web.xml配置的方法是什么

SpringServletContainerInitializer
/**
* @HandlesTypes這個(gè)注解標(biāo)明了該ServletContainerInitializer需要在啟動(dòng)時(shí)候處理哪些類,
然后服務(wù)器會(huì)把找到的這些類傳到onStartup的第一個(gè)參數(shù)里
注意這里的類包括所配置類的子類,比如這里配置WebApplicationInitializer,
啟動(dòng)之后,就會(huì)把這個(gè)WebApplicationInitializer的子類都傳進(jìn)去
*/@HandlesTypes(WebApplicationInitializer.class)public class SpringServletContainerInitializer implements ServletContainerInitializer {
        
    @Override
    public void onStartup(Set<Class<?>> webAppInitializerClasses, ServletContext servletContext)
            throws ServletException {
        List<WebApplicationInitializer> initializers = new LinkedList<WebApplicationInitializer>();
        //.... 省略容錯(cuò)的一些代碼
        initializers.add((WebApplicationInitializer) waiClass.newInstance());
        //.... 
    AnnotationAwareOrderComparator.sort(initializers);
        for (WebApplicationInitializer initializer : initializers) {
            initializer.onStartup(servletContext);
        }
    }}

startup的邏輯很簡(jiǎn)單,web容器啟動(dòng)后,調(diào)用所有WebApplicationInitializer的onStartup方法。

WebApplicationInitializer 的實(shí)現(xiàn)SpringBootServletInitializer
@Overridepublic void onStartup(ServletContext servletContext) throws ServletException {
   //....
    WebApplicationContext rootAppContext = createRootApplicationContext(
            servletContext);
   //...}
protected WebApplicationContext createRootApplicationContext(
        ServletContext servletContext) {
    //...
    return run(application);}

一般使用Springboot的時(shí)候,都會(huì)繼承一個(gè)類SpringBootServletInitializer,在這個(gè)類的onStartup方法中,啟動(dòng)了整個(gè)Spring容器。

本地啟動(dòng)springboot時(shí),我們一般會(huì)寫一個(gè)類似于這樣的main方法。

springboot省去web.xml配置的方法是什么

上述分析也解釋了為啥把springboot應(yīng)用部署到機(jī)器上,tomcat能夠找到springboot的入口,并啟動(dòng)它。

DispatcherServlet的配置

關(guān)于springboot如何加載類并啟動(dòng)的這里就不介紹了。
這里說(shuō)明下究竟Springboot如何配置DispatcherServlet的

springboot省去web.xml配置的方法是什么

1)當(dāng)類路徑下存在DispatcherServlet時(shí)候,該配置生效。
2)這個(gè)配置會(huì)在DispatcherServletAutoConfiguration配置完之后再配置。

DispatcherServletAutoConfiguration配置

springboot省去web.xml配置的方法是什么

springboot省去web.xml配置的方法是什么

看到這里就是我們非常熟悉的springboot的使用了。springboot在DispatcherServletConfiguration這個(gè)類里對(duì)DispatcherServlet進(jìn)行了配置以及注冊(cè)。

感謝各位的閱讀,以上就是“springboot省去web.xml配置的方法是什么”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)springboot省去web.xml配置的方法是什么這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI