在web.xml中通过contextConfigLocation配置spring

<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>

原文地址:https://www.cnblogs.com/Jeely/p/10762045.html