-
Spring Boot Profile 분리설정Spring Boot 2019. 5. 9. 08:00
아래는 잘 정리된 링크:
https://dhsim86.github.io/web/2017/03/28/spring_boot_profile-post.html스프링 부트환경에서 Spring Boot Profile 분리설정하려면
src/main/resources 밑에 아래와 같이 파일을 생성한다.
application.properites
application-local.properites
application-dev.properites
application-stage.properites
application-prd.properites
공통설정은 application.properites에 작성해 두고,
서버별 설정이 달라지는 부분은 각 분리된 파일에 작성한다.
maven으로 실행시 아래와 같이 프로파일 지정한다.
spring-boot:run -Dmaven.test.skip=true -Dspring-boot.run.profiles=dev
'Spring Boot' 카테고리의 다른 글
스프링부트 배치, 메이븐, Spring Boot Batch, Maven (0) 2019.05.22 Spring Boot applicaiton.properites 설명 (0) 2019.05.09 Spring Boot, MyBatis, mapUnderscoreToCamelCase (0) 2019.05.08 SprngBoot + jsp + IntelliJ 사용시 jsp못찾아 404 발생상황 해결 (1) 2019.05.07 JobLauncherTestUtils 사용하기 (0) 2019.02.23