<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>
..... [생략] ....
'기타 > Spring' 카테고리의 다른 글
| Spring Security 를 이용하여 로그인여부 화면에 표시하기 (0) | 2013.04.18 |
|---|---|
| jxls + excel download + Spring (3) | 2012.02.20 |