Spring Boot配置文件放在jar外部
2021-06-29 14:03
标签:demo man 自定义 ota oca 使用 fun span aml Spring Boot程序默认从application.properties或者application.yaml读取配置,如何将配置信息外置,方便配置呢? 查询官网,可以得到下面的几种方案: SpringApplication会默认将命令行选项参数转换为配置信息 从命令行指定配置项的优先级最高,不过你可以通过setAddCommandLineProperties来禁用 Spring程序会按优先级从下面这些路径来加载application.properties配置文件 因此,要外置配置文件就很简单了,在jar所在目录新建config文件夹,然后放入配置文件,或者直接放在配置文件在jar目录 如果你不想使用application.properties作为配置文件,怎么办?完全没问题 或者 当然,还能在代码里指定 不同环境的配置设置一个配置文件,例如: 在application.properties中指定使用哪一个文件 当然,你也可以在运行的时候手动指定: Spring Boot配置文件放在jar外部 标签:demo man 自定义 ota oca 使用 fun span aml 原文地址:https://www.cnblogs.com/fenghh/p/9646509.html通过命令行指定
例如,启动时命令参数指定:java -jar myproject.jar --server.port = 9000
SpringApplication.setAddCommandLineProperties(false).
外置配置文件
自定义配置文件
java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties
java -jar -Dspring.config.location=D:\config\config.properties springbootrestdemo-0.0.1-SNAPSHOT.jar
@SpringBootApplication
@PropertySource(value={"file:config.properties"})
public class SpringbootrestdemoApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootrestdemoApplication.class, args);
}
}
按Profile不同环境读取不同配置
spring.profiles.active = dev
java -jar myproject.jar --spring.profiles.active = prod
文章标题:Spring Boot配置文件放在jar外部
文章链接:http://soscw.com/index.php/essay/99393.html