Last active
January 15, 2016 16:38
-
-
Save daemin-hwang/30ee93d2b3defc55983b to your computer and use it in GitHub Desktop.
윈도우 환경 변수 설정
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[변수설정] | |
setx spring.profiles.active "qa" | |
echo %spring.profiles.active% | |
[변수해제] | |
setx spring.profiles.active "" | |
echo %spring.profiles.active% | |
[변수설정] | |
setx spring.profiles.serviceId "post" | |
echo %spring.profiles.serviceId% | |
[변수해제] | |
setx spring.profiles.serviceId "" | |
echo %spring.profiles.serviceId% | |
### 해제한 변수명은 cmd 창을 껏다가 다시킨상태로 조회 해봐야 없는상태로 출력되어 보인다. ### | |
### 머신에 셋팅된 환경 변수보다 | |
-Dspring.profiles.active=real -Dspring.profiles.serviceId=blog 와 같이 JVM구동시 던지는 파라미터가 먼저 바인딩 된다. ### | |
[스프링 환경 변수 변천사 소개 슬라이드쉐어] | |
http://www.slideshare.net/sbcoba/2015-47137155 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment