Spring 사용시 프로퍼티 파일(property file)을 로딩(loading)하는 java 샘플코드

By | 8월 4, 2017

*  file I/O 를 사용하는 작업이기 때문에 반복해서 실행하지는 않도록 하자.

Resource resource = new ClassPathResource("/my.properties");
Properties props = PropertiesLoaderUtils.loadProperties(resource);

 

 

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments