<webapp>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:**/META-INF/spring/root-context.xml</param-value>
</context-param>
..... [생략] ....
위와 같은 App을 여러개 설정후 한 서버에 올릴경우 다른 App에 영향을 줄 수 있으므로 주의!!!
<webapp>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:/META-INF/spring/root-context.xml</param-value>
</context-param>
..... [생략] ....
'Tip > Spring' 카테고리의 다른 글
[Maven] thymeleaf-extras-springsecurity3-2.0.0 다운로드 실패 (0) | 2013.07.29 |
---|---|
Spring MVC + Thymeleaf (0) | 2013.07.24 |
Jackson library 이용하여 date format 변경하기 (0) | 2013.07.08 |
Spring Security 를 이용하여 로그인여부 화면에 표시하기 (0) | 2013.04.18 |
jxls + excel download + Spring (3) | 2012.02.20 |