2017-06-06 73 views
1

我在Jelastic中使用了新的Spring Boot節點。使用Jelastic Spring Boot的Env變量

以前在我有一個Tomcat節點;

server/variables.conf 
-Dspring.profiles.active=sandbox 

現在在Spring Boot節點下默認是;

conf/variables.conf 
export JAVA_OPTS="-Xms32M -Xmn30M -Xmx1638M -Xminf0.1 -Xmaxf0.3 -XX:+UseG1GC -XX:+UseCompressedOops" 

問題是,我在哪裏放置「-Dspring.profiles.active =沙箱」?

將它添加到出口行如此似乎不工作?

conf/variables.conf 
export JAVA_OPTS="-Dspring.profiles.active=sandbox -Xms32M -Xmn30M -Xmx1638M -Xminf0.1 -Xmaxf0.3 -XX:+UseG1GC -XX:+UseCompressedOops" 

也不符合它自己的界限。 想法?

回答

3

啊明白了; some shells don't allow dots

所以解決方案現在看起來像;

conf/variables.conf 
export JAVA_OPTS="-Dspring.profiles.active=sandbox -Xms32M -Xmn30M -Xmx1638M -Xminf0.1 -Xmaxf0.3 -XX:+UseG1GC -XX:+UseCompressedOops" 
export SPRING_PROFILES_ACTIVE=sandbox