1. 程式人生 > >web.xml的context-param不僅配路徑也配資料夾/配置檔案的載入順序

web.xml的context-param不僅配路徑也配資料夾/配置檔案的載入順序

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>ihorder-webapp</display-name>
  
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:/applicationContext.xml
</param-value>
</context-param>
<context-param>
<param-name>spring.profiles.default</param-name>
<param-value>production</param-value>
</context-param>
  

  <listener>

如果被web.xml配置載入還配置spring載入會報錯:

<listener>
   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

找不到元素。。的宣告

<context標籤和寫註解缺一不可,配置裡寫過<bean就不要再寫註解了以防衝突

<context:annotation-config/>開啟註解注入

<context:component-scan base-package="com.jd.ihhotel.man.webapp" />配置spring掃描的範圍,掃描不到的使用<import匯入即可。