yml2 YAML/YML Spring에서 외부설정값들을 관리할때 보통 properties 파일을 많이 사용합니다. SpringBoot 에서는 properties말고도 yml 파일을 기본으로 사용할 수도 있습니다. properties대신 yml을 사용하여 설정값들을 관리하면 보다 좋은 가독성으로 관리하기가 편리하고 중복으로 값을 입력할 수 있는 properties와 달리 중복도 방지할 수 있습니다. properties ghsong.name.first:gunho ghsong.name.last:song ghsong.phone[0]:01011112222 ghsong.phone[1]:01033334444 yml ghsong: name: first: gunho last: song phone: - 01011112222 - 0103333444.. 2021. 7. 16. 설정파일 YAML 설정파일 (YAML) YAML 계층구조 표현 계층 성격을 가지는 변수를 설정 할 때 properties보다 가독성이 높다 YAML ghsong: name: first:gunho last:song phone: - 01012341234 - 0311231234Properties ghsong.name.first:gunho ghsong.name.last:song ghsong.phone[0]:0101234123 ghsong.phone[1]:0311231234 Key, Value Map Mapping properties보다 Map 구조를 더 명시적이며 간단하게 Binding 가능! seat: tpye: 001:A 002:B 004:C문서 구조화 문서를 나누는 기능(---) spring: profiles: local .. 2019. 4. 30. 이전 1 다음