在web.xml中經過contextConfigLocation配置spring,contextConfigLocation 參數定義了要裝入的 Spring 配置文件。
若是想裝入多個配置文件,能夠在<param-value>標記中用逗號做分隔符。
在web.xml裏配置Listener web
若是在web.xml裏給該Listener指定要加載的xml,如: spring
xml代碼以下: app
<!-- spring config --> spa
<context-param> code
<param-name>contextConfigLocation</param-name> xml
<param-value>classpath:applicationContext.xml</param-value> it
</context-param> io
則會去加載相應的xml,而不會去加載/WEB-INF/下的applicationContext.xml。 class
可是,若是沒有指定的話,默認會去/WEB-INF/下加載applicationContext.xml。 配置