properties 파일을 Yaml 파일로 변경하기
Spring Boot 설정은 Properties 또는 Yaml 파일로 설정한다.
properties 파일은 key=value 구조를 갖고 있어 가독성이 떨어지는데 yaml 파일은 계층 구조를 가지고 있어 가독성이 크게 향상된다.
※ 참고 : YAML이란?
properties 구조 |
yml 구조 |
Yaml 파일로 변경하기
- application.properties 파일 위치에 application.yml 파일을 생성한다.
- properties 파일을 Yaml 파일로 변환
- Properties to Yaml Converter 사이트 접속하여 변환
http://mageddo.com/tools/yaml-converter - application.yml 파일에 2번에서 변환된 내용을 복사하여 붙여넣고 저장
- application.properties 파일은 삭제하고 Spring Boot Applicaiton 실행하여 정상 동작 확인
0 댓글