application.yml 파일에서 profiles별로 정리할 수 있다. yml 파일에서는 '---;로 나눌 수 있다.
그게 아니면, 상단에서 디폴트로 정할 수 있다.
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
'general java' 카테고리의 다른 글
[gradle] maven repository에서 pom /jar 못 읽어 올 때, (0) | 2015.05.22 |
---|---|
[spring boot] logback.xml과 application.yml의 로그 설정 우선 순위 (0) | 2015.05.22 |
[spring boot] pid/port 번호 생성 (0) | 2015.05.22 |
[spring boot] 배포하기 (undertow + freemarker) (0) | 2015.05.21 |
[Spring Boot] @SpringBootApplication (0) | 2015.05.18 |