标签:就会 code 接收参数 script get [] 方式 默认 ref
springboot 启动可以通过 java -jar xxx.jar 参数 来传递启动参数到程序中。下面介绍一种优雅的方式,就是借助于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/"
标签:就会 code 接收参数 script get [] 方式 默认 ref
原文地址:http://blog.51cto.com/zhengqidaxia/2068284