Spring Profile
어플리케이션 설정을 local / develop / production 별로 다르게 적용할 때 사용
👉 application-{profile}.yml
spring boot는 어플리케이션이 실행될 때 자동으로 application.properties 또는 application.yml을 찾는다.
gradle/src/main/resources/application.yml
spring:
profiles:
active: local # default profile
group:
local:
- common
prod:
- common
---
spring:
config:
activate:
on-profile: common
728x90
반응형
'개발공부 > JAVA Spring' 카테고리의 다른 글
Spring Data JPA, DAO, DTO, Entity, Repository 란? (0) | 2023.01.16 |
---|---|
테스트 코드 작성 프레임워크 - Spock (0) | 2023.01.04 |
[springboot] redis, mariadb docker-compose (0) | 2022.12.18 |
[springboot] jar 파일 생성 및 도커 파일 작성하기 (0) | 2022.12.17 |
Window JAVA 설치하기 (azul) (0) | 2022.12.04 |
댓글