Ant path 자원 로드
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[] {};
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ant tool in EclipseWe can install JRE and Ant standalone in our operation system and configure the Ant command avaiable in the command line...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.