Java Spring FrameWork
Revision as of 15:02, 5 December 2014 by Nicolas Rollin (talk | contribs) (Created page with "==Notes==  * In the web.xml specify the location of the Spring Configuration File <pre>     <context-param>         <param-name>contextConfigLocation</param-name>         <par...")
Notes
- In the web.xml specify the location of the Spring Configuration File
 
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring/business-config.xml, classpath:spring/tools-config.xml</param-value>
    </context-param>
OR
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value>
    </context-param>