您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Java web.xml之contextConfigLocation有什么用,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
在web.xml中通過contextConfigLocation配置spring,contextConfigLocation參數(shù)定義了要裝入的 Spring 配置文件。
部署applicationContext.xml文件
如果不寫任何參數(shù)配置,默認(rèn)的是在/WEB-INF/applicationContext.xml
如果指定了要加載的文件,則會(huì)去加載相應(yīng)的xml,而不會(huì)去加載/WEB-INF/下的applicationContext.xml。如果沒有指定的話,默認(rèn)會(huì)去/WEB-INF/下加載applicationContext.xml。
如果想要自定義文件名,需要在web.xml中加入contextConfigLocation這個(gè)context參數(shù)
springmvc的默認(rèn)配置文件是放在WEB-INF下的,并且要命名為*-servlet.xml,*為servlet—name,即下文中的"Springmvc"。
我們可以在web.xml中配置<init-param>來自定義文件名稱和位置。如下:
<servlet> <servlet-name>Springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 通過初始化參數(shù),指定xml文件的位置 --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>Springmvc</servlet-name> <url-pattern>/*.do</url-pattern> </servlet-mapping>
classpath:只會(huì)到你的class路徑中查找找文件;
classpath*:不僅包含class路徑,還包括jar文件中(class路徑)進(jìn)行查找.
關(guān)于“Java web.xml之contextConfigLocation有什么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。