欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring Boot 把配置文件和日志文件放到jar外部

程序员文章站 2022-06-30 23:46:38
如果不想使用默认的application.properties,而想将属性文件放到jar包外面,可以使用如下两种方法: 只能设置全路径。因为java -jar运行jar包...

如果不想使用默认的application.properties,而想将属性文件放到jar包外面,可以使用如下两种方法:

只能设置全路径。因为java -jar运行jar包时,无法指定classpath(无论通过参数还是环境变量,设置的classpath都会被覆盖)。

方法1:命令行传参指定spring.config.location

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注解。

@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的时候排除文件

<resources>
  <resource>
    <directory>src/main/resources</directory>
    <excludes>
      <exclude>*.properties</exclude>
      <exclude>logback.xml</exclude>
    </excludes>
  </resource>
</resources>

2.启动的时候传入参数指定位置

java -jar xxx.jar --spring.config.location=d:\springconfig\ --logging.config=d:\springconfig\logback.xml

springboot 默认找配置文件的位置如下

 // note the order is from least to most specific (last one wins)
private static final string default_search_locations = "classpath:/,classpath:

总结

以上所述是小编给大家介绍的spring boot 把配置文件和日志文件放到jar外部,希望对大家有所帮助