32 lines
593 B
Markdown
32 lines
593 B
Markdown
|
```yml
|
||
|
## application.yml 에서 그룹 사용 방법
|
||
|
|
||
|
# default
|
||
|
spring:
|
||
|
profiles:
|
||
|
active: local # default
|
||
|
group:
|
||
|
local: # local, common profile을 그룹지어 함께 어플리케이션 구동
|
||
|
- common
|
||
|
prod: # prod, common profile을 그룹지어 함께 어플리케이션 구동
|
||
|
- common
|
||
|
|
||
|
---
|
||
|
spring:
|
||
|
config:
|
||
|
activate:
|
||
|
on-profile: common # application-common.yml 과 동일한 역할 (공통 설정)
|
||
|
|
||
|
---
|
||
|
spring:
|
||
|
config:
|
||
|
activate:
|
||
|
on-profile: local
|
||
|
|
||
|
---
|
||
|
spring:
|
||
|
config:
|
||
|
activate:
|
||
|
on-profile: prod
|
||
|
|
||
|
```
|