application.yml 파일에서 profiles별로 정리할 수 있다. yml 파일에서는 '---;로 나눌 수 있다. 

그게 아니면, 상단에서 디폴트로 정할 수 있다. 


http://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html

server:
port: 8080

---

spring:
profiles : alpha
main:
show-banner: false
web_environment: false
server:
port: 8080

---


spring:
profiles : production
main:
show-banner: false
web_environment: false
server:
port: 8080

---


실행시 아래와 같이 사용하여 profile을 사용할 수 있다. 


java -jar .. -Dspring.profiles.active=production
java -jar .. -Dspring.profiles.active=alpha


http://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html#howto-set-active-spring-profiles




Posted by '김용환'
,