tomat springboot 환경변수 적용

# springboot 의 spring.profiles.active 값에 따라 다른 설정을 사용해야 할때가 있다.
# 이 경우 tomcat_home/bin 에 setenv.sh 파일을 생성하면 된다.
vi setenv.sh
JAVA_OPTS="$JAVA_OPTS -Dspring.profiles.active=test"

# tomcat_home/bin/catalina.sh 에서 setenv.sh 파일이 존재하면 로드한다.
# 이제 tomcat 을 시작
tomcat_home/bin/catalina.sh start

# tomcat 프로세스를 확인해보면 
# -Dspring.profiles.active=test 가 적용된걸 알 수 있다.
ps -ef | grep tomcat

comments:

댓글 쓰기