복수의 profile 설정시 group이라는 키워드를 사용한다.
다음과 같은 설정시 default를 local로 설정하면서 common 파일을 동시에 적용할 수 있다.
spring:
profiles:
active: local
group:
local:
- common
prod:
- common
---
spring:
config:
activate:
on-profile: common
---
spring:
config:
activate:
on-profile: local
---
spring:
config:
activate:
on-profile: prod
반응형
'Programming > Java, Spring' 카테고리의 다른 글
[Spring Cloud] Discovery Server 만들고 User service 등록하기 (0) | 2023.05.31 |
---|---|
마이크로서비스(MSA)와 스프링 클라우드 (Spring Cloud) (0) | 2023.05.31 |
gradle 빌드 오류 날 때 클린 해주기 : org.springframework.beans.factory.BeanDefinitionStoreException (0) | 2023.03.09 |
mockMvc로 rest json 데이터 테스트하기 (0) | 2023.03.08 |
gradle에서 내장 톰캣 서버 포트 변경하기 (0) | 2023.02.23 |