<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>
..... [생략] ....
SMALL
'개발 아카이브 > Java·Spring' 카테고리의 다른 글
| File download 에러 (0) | 2013.05.02 |
|---|---|
| Spring Security 를 이용하여 로그인여부 화면에 표시하기 (0) | 2013.04.18 |
| JAVA 환경변수 PATH 등록 (0) | 2013.03.08 |
| [Java] JDK 설치 (0) | 2013.03.08 |
| jxls + excel download + Spring (3) | 2012.02.20 |