Spring启动可执行文件中的RUN_ARGS

时间:2017-12-05 17:38:09

标签: java spring-boot command-line-arguments executable-jar

当我将init.d服务与conf文件一起使用并放入custom:

RUN_ARGS=--spring.config.location=/usr/share/application/config/app.properties

类似于https://github.com/spring-projects/spring-boot/issues/4281

服务按预期开始

但是,如果我有默认名称和位置application.properties,但需要传递--logging.config

RUN_ARGS=--logging.config=/usr/share/application/config/logback-spring.xml

服务无法启动,即使将DEBUG=true添加到conf文件

,我也看不到任何消息

修改:与JAVA_OPTS类似的问题:

JAVA_OPTS="-Dspring.profiles.active=dev"

工作正常,但例如

JAVA_OPTS="-Xmx1024m"

服务启动失败

0 个答案:

没有答案