1. 程式人生 > >web.xml中配置Spring容器隨專案啟動

web.xml中配置Spring容器隨專案啟動

 <!-- 可以讓spring容器隨專案的啟動而建立,隨專案的關閉而銷燬 -->
  <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <!-- 指定載入spring配置檔案的位置 -->
  <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:applicationContext.xml</param-value>
  </context-param>