java 프로퍼티 파일 읽기 예시 (java.util.Properties, org.springframework.util.ResourceUtils)

By | 11월 25, 2015

 

Properties props = new Properties();
try{
	props.load(new FileInputStream(ResourceUtils.getFile("classpath:config/properties/test.properties"))) //classpath 기준으로 찾을 경우
	//props.load(new FileInputStream(ResourceUtils.getFile("file:C:/project/src/main/resources/config/properties/test.properties"))) //파일시스템 기준으로 찾을 경우
}catch(IOException e){
	e.printStackTrace();
}
String testValue = props.get("testKey");

 
 
* 이러한 류의 작업은 File I/O를 사용하기 때문에 시스템 기동부나 테스트코드에서 사용해야지, 자주 반복되는 구간에서 사용해서는 안된다.
 
 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments