Java Spring FrameWork

From Objectif Client Inc
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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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>