web容器中執行個體化spring相關配置解析,webspring

來源:互聯網
上載者:User

web容器中執行個體化spring相關配置解析,webspring

文章主要探究了web容器中執行個體化spring的相關配置簡單介紹,接下來我們看看具體內容。

web容器中執行個體化spring相關配置說明:

要想在web容器執行個體化時載入spring容器,web.xml檔案中配置如下:

<context-param>  <param-name>contextConfigLocation</param-name>  <param-value>classpath:bean.xml</param-value></context-param><!-- 對Spring容器進行執行個體化的監聽器s --><listener>   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener>

說明:

預設情況下spring執行個體化時載入的是/WEB-INF/下的applicationContext.xml

<param-name>contextConfigLocation</param-name>

<param-value>classpath:bean.xml</param-value>指定了spring需要載入的檔案(類路徑下的bean.xml檔案)

如果設定檔有多個配置如下:

  <context-param>    <param-name>contextConfigLocation</param-name>    <param-value>      classpath*:conf/spring/applicationContext_core*.xml,      classpath*:conf/spring/applicationContext_dict*.xml,      classpath*:conf/spring/applicationContext_hibernate.xml,      classpath*:conf/spring/applicationContext_staff*.xml,      classpath*:conf/spring/applicationContext_security.xml      classpath*:conf/spring/applicationContext_modules*.xml      classpath*:conf/spring/applicationContext_cti*.xml      classpath*:conf/spring/applicationContext_apm*.xml    </param-value>  </context-param>

或者(使用空格隔開,如下配置:)

     <CONTEXT-PARAM>     <PARAM-NAME>contextConfigLocation</PARAM-NAME>     <PARAM-VALUE>        applicationContext-database.xml applicationContext.xml     </PARAM-VALUE>    </CONTEXT-PARAM>

總結

以上就是本文關於web容器中執行個體化spring相關配置解析的全部內容,希望對大家有所協助。感興趣的朋友可以繼續參閱本站:

Spring執行個體化bean的方式代碼詳解

Spring的執行個體Factory 方法和靜態Factory 方法執行個體代碼

淺談Spring單例Bean與單例模式的區別

如有不足之處,歡迎留言指出。感謝朋友們對本站的支援!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.