码迷,mamicode.com
首页 > 编程语言 > 详细

springboot 启动接收参数

时间:2018-02-02 20:18:49      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:就会   code   接收参数   script   get   []   方式   默认   ref   

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/"

springboot 启动接收参数

标签:就会   code   接收参数   script   get   []   方式   默认   ref   

原文地址:http://blog.51cto.com/zhengqidaxia/2068284

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!