如果不想使用默认的application.properties
,而想将属性文件放到jar包外面,可以使用如下两种方法:
只能设置全路径。因为Java -jar
运行jar包时,无法指定classpath(无论通过参数还是环境变量,设置的classpath都会被覆盖)。
方法1:命令行传参指定spring.config.location
1
|
java -jar -Dspring.config.location=D:\zTest\config\config1.properties springbootrestdemo- 0.0 . 1 -SNAPSHOT.jar
|
还可以用spring.config.location
指定路径,这样会在这个路径中去寻找application-{profile}.properties
。
还可以用spring.config.location
指定路径,然后用spring.config.name
指定配置文件名字。
可以用逗号隔开,指定多个路径和名字
方法2:使用@PropertySource注解。
1
2
3
4
5
6
7
8
|
@SpringBootApplication
@PropertySource (value={ "file:D:/zTest/config/config1.properties" })
public class SpringbootrestdemoApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootrestdemoApplication. class , args);
}
}
|
下面看下Spring Boot 配置文件和日志文件放到jar之外
1.设置打包jar的时候排除文件
1
2
3
4
5
6
7
8
9
|
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>*.properties</exclude>
<exclude>logback.xml</exclude>
</excludes>
</resource>
</resources>
|
2.启动的时候传入参数指定位置
1
|
java -jar xxx.jar --spring.config.location=D:\springconfig\ --logging.config=D:\springconfig\logback.xml
|
springboot 默认找配置文件的位置如下
1
2
|
// Note the order is from least to most specific (last one wins)
private static final String DEFAULT_SEARCH_LOCATIONS = "classpath:/,classpath:
|
总结
以上所述是小编给大家介绍的Spring Boot 把配置文件和日志文件放到jar外部,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!