Ant path 자원 로드

992 단어 AntSpringXML
더 읽 기
SPRING 은 ANT 와 같은 경로 로 자원 을 불 러 옵 니 다 (JAR 에서 자원 을 불 러 옵 니 다 포함). 예 를 들 어 classpath *: / config / tx / * * /. service. xml

    /**
     * 

     * Ant path       
     *   
     * classpath*:/
     * classpath:/
     *        
     * 
* @param pattern
* @ return 조건 에 맞 는 모든 파일 흐름
*/
public static InputStream[] loadStreams(String pattern) {
PathMatchingResourcePatternResolver rs = new PathMatchingResourcePatternResolver();
try {
Resource[] resources = rs.getResources(pattern);
if (resources != null && resources.length > 0) {
InputStream[] streams = new InputStream[resources.length];
for (int i = 0; i < resources.length; i++) {
streams[i] = resources[i].getInputStream();
}
return streams;
} else {
return new InputStream[] {};
}
} catch (IOException e) {
return new InputStream[] {};
}
}

좋은 웹페이지 즐겨찾기