*. import 시 "classpath:"와 "classpath*:" 의 차이점
1) classpath:conf/spring-context.xmlclasses 폴더와 jar 폴더를 순환하면서 첫번째로 발견되는 파일을 가져옵니다.
즉, 단일 파일이 로딩되는 형태가 됩니다.
2) classpath*:conf/spring-context.xml
classes 폴더와 jar 폴더를 순환하면서 conf 폴더의 spring-context.xml 파일을 모두 찾아냅니다.
즉, 복수개의 파일이 로딩되는 형태가 됩니다.
[ 출처 ] http://blog.naver.com/niceilm?Redirect=Log&logNo=150136093639
'Spring' 카테고리의 다른 글
[ Spring ] Web Service - Restful 2 (0) | 2013.11.26 |
---|---|
[ Spring ] Web Service - Restful 1 (0) | 2013.11.26 |
[Spring] DI를 위한 annottion - @Resource / @Autowired / @Inject / @Qualifier (0) | 2012.08.13 |
[Spring] spring 3.x log4j 사용 (0) | 2012.08.10 |
[Spring] annotation (0) | 2012.08.09 |