deploy
-
Spring Profile + Maven Profile + WAR파일 배포Server/Spring Boots 2020. 10. 21. 14:46
Maven Profile 세팅 dev true dev local local live live 스프링 프로필 세팅 한가지 중요한 것은 Maven Profile이랑 Spring Profile은 다르다는 것이다. Maven Profile은 Build 시점에서 사용되는 profile이고, spring.profiles.active는 Run Time에서 쓰이는 프로필이다. 때문에 이를 JAVA_OPTS 에 넣어서 런타임 시 실행하게 하는 방법이 보통 많이 쓰이고 있다. clean package -Plocal 빌드 시 Maven Profile 설정 export JAVA_OPTS="$JAVA_OPTS -Dspring.profiles.active=dev" Runtime용 스프링 profile 설정 JAVA_OPTS를 수..