Spring 사용시 프로퍼티 파일(property file)을 로딩(loading)하는 java 샘플코드
* file I/O 를 사용하는 작업이기 때문에 반복해서 실행하지는 않도록 하자. Resource resource = new ClassPathResource(“/my.properties”); Properties props = PropertiesLoaderUtils.loadProperties(resource);
* file I/O 를 사용하는 작업이기 때문에 반복해서 실행하지는 않도록 하자. Resource resource = new ClassPathResource(“/my.properties”); Properties props = PropertiesLoaderUtils.loadProperties(resource);