springboot 启动可以通过 java -jar xxx.jar 参数 来传递启动参数到程序中。
通过args[] 来传递参数非常不优雅,不同系统会有奇异,windows系统会在参数里面自己写入一行标识,Linux系统就不会,传几个参数就会按照数组位数排列。
下面介绍一种优雅的方式,就是借助于application.properties里面的属性,通过@Value将属性注入进来。
代码如下:br/>@Component
public class ScriptPath {
@Value("${contextPath}")
private String contextPath;
public String getPath() {
return contextPath;
}
}
安装包路径默认为空
contextPath=
启动的时候使用 java -jar xxx.jar --contextPath="/home/app/"
原文地址:http://blog.51cto.com/zhengqidaxia/2068284
时间: 2024-11-06 09:27:43