我想知道如何将我在Wildfly 9中运行的应用程序的外部属性加载为WAR,我试图向Wildfly执行中添加一个Java参数,但似乎应用程序无法识别该属性.
-Dspring.config.location=file:///C:\Temp\config\application.properties,classpath:application.properties
Spring Boot有什么方法可以读取外部属性文件?我试图在Wildfly中以WAR的形式加载并运行一个Spring Boot应用程序.
我将不胜感激.
谢谢.
解决方法:
在我的linux系统中,我在standalone.xml中有一个条目:
<system-properties>
<property name="spring.config.location" value="file:/opt/jboss/wildfly/standalone/configuration/"/>
</system-properties>
我只是在这里定义目录,因此它必须以“ /”结尾.
在目录“ / opt / jboss / wildfly / standalone / configuration /”中,有我的application.yml.