赞
踩
1、application-prod.properties 生产配置
启动脚本
nohup java -jar -Dspring.profiles.active=prod xxx.jar > /dev/null 2>&1 &
2、application-dev.properties 开发配置
直接在开发工具得jvm 参数中配置
-Dspring.profiles.active=dev
3、application-test.properties 测试环境配置
启动脚本
nohup java -jar -Dspring.profiles.active=test xxx.jar > /dev/null 2>&1 &
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。