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
- 아이오닉 설치
- yml 여러개
- 16.04
- git
- CORS
- mariadb
- Spring cloud
- 도커 설치
- Service Registry
- Rest
- multiple yml
- yml constant
- gitlab
- Spring
- Service Discovery
- MSA
- docker
- 도커
- datasource
- spring boot rest api
- eureka
- docker isntall
- ionic install
- spring boot
- ionic
- api 서버
- spring constant
- 다중 yml
- github
- 아이오닉
Archives
- Today
- Total
목록yml 여러개 (1)
개발 메모장
[Spring] Multiple YML(Constants) 파일 관리
현재 많은 프로젝트들을 환경값을 application.properties 파일에서 application.yml파일로 관리를 하고 있다. 이렇게 되면서 Constants 역시 기존에는 class파일에서 yml파일로 관리를 하는 경우가 생겼고, application.yml에서 물론 전부 관리할 수 있지만 별도의 yml파일로 분리하여 관리하여할 경우가 있어서, 해당 방법을 알아보자 기존의 application.yml은 @Configuration public class CustomConfig { public CustomConfig(@Value("${info.name}") String name){ //use Your Constants } } 이와 같은 방식으로 사용할 수 있었다. 1. resoures/consta..
Server
2020. 8. 9. 23:14