Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Java
- 두 동전
- 데이터
- github
- Algorithm
- 프로그래머스
- ubuntu
- IntelliJ
- broadcastreceiver
- Android
- mysql
- service
- 17837
- vscode
- intent
- insert
- activity
- data
- 16197
- 단축키
- 알고리즘
- 데이터전달
- spring
- 제어반전
- 안드로이드
- 큐빙
- 백준
- git
- goland
- Jenknis
Archives
- Today
- Total
해보자
[Springboot] 외부 설정 파일 (properties, yml) 본문
application.properties
설정이름=값
text file 형태의 properties file 을 사용
가독성이 떨어진다
application.yml
설정이름 : 값
- json file format과 같이 data를 저장하기 위한 data format 형태
- 직관적이고 가독성이 좋다
- data를 리스트, 스칼라, 해쉬 data의 조합으로 적절히 사용할 수 있다.
- 들여쓰기를 제대로 해야 한다.
프로젝트 생성 시에 .properties
파일로 생성되지만 .proprties 파일을 .yml
파일로 rename하여 사용할 것을 추천한다.
'Spring' 카테고리의 다른 글
[Maven] jar에 기본 Manifest 속성이 없습니다 (0) | 2021.04.07 |
---|---|
[Spirngboot] h2 Database Connection (0) | 2020.09.09 |
[Spring] GWT(Given-When-Then) (0) | 2020.09.09 |
[Spring] 제어 반전 컨테이너 - IoC (0) | 2020.09.07 |
[SpringBoot] Could not target platform: 'Java SE 11' using tool chain: 'JDK 8 (1.8)' (0) | 2020.08.13 |