728x90
public class Main {
public static void main(String[] args) throws Exception {
Resource resource = new ClassPathResource("custom.properties"); // 1
Properties properties = PropertiesLoaderUtils.loadProperties(resource); // 2
System.out.println(properties); // 3
}
}
1. custom.properties 파일 데이터를 가져와서 Resource 객체로 캐스팅
2. PropertiesLoaderUtils 유틸 클래스를 이용해서 Properties 객체로 변환
3. properties 객체 내용 출력
'Spring' 카테고리의 다른 글
Thymeleaf 에서 현재 로케일 값 출력하기 (0) | 2019.07.25 |
---|---|
데이터 암호화를 위한 JPA Attribute Converter (0) | 2019.06.10 |
Spring Camp 2019 강의 자료 모음 (0) | 2019.05.06 |
Spring HandlerMethodArgumentResolver 인터페이스 (2) | 2019.05.05 |
Spring Boot 배너 만들기 (0) | 2019.05.04 |
댓글