Changes between Version 3 and Version 4 of applicationConfig


Ignore:
Timestamp:
Feb 25, 2009, 1:08:53 AM (15 years ago)
Author:
erikvaningen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • applicationConfig

    v3 v4  
    11Just did a little refactoring to achieve this:
    2  * applicationConfigs which are not likely to be changed in production are on the classpath
    3  * applicationConfigs which are likely to be changed in production are in the WEB-INF
     2 * (1) applicationConfigs which are not likely to be changed in production are on the classpath
     3 * (2) applicationConfigs which are likely to be changed in production are in the WEB-INF
     4
     5In the web.xml there is referred to as
     6 * (1) classpath:/applicationContext-persistence.xml
     7 * (2) /WEB-INF/applicationContext.xml
     8
     9
    410
    511Therefore you find the config of the Dao's now in
     
    814
    915I did this to avoid a lot of duplicate application configs in the test and WEB-INF directories.
     16
     17
     18
     19