引用外部配置文件

引用外部配置文件
        项目真正上线和部署会建议使用外部配置文件,常用的加载外部配置文件的方法,可以 使用外部 jar 包方 式读取指定配置文件 ,通过 spring.config.location 的值来改变默认配置文件位置。
操作过程:
1. D config 目录下,创建 app.properties
server.port=8081
server.servlet.context-path=/outer
2. 项目打包
将项目打成 jar 包文件,然后把 target 下的 jar 文件拷贝到 D 盘上
3. 使用命令行运行文件
java -jar unit2-1.0.jar --spring .config .location = d:/config/app.properties
运行结果:
Spring Boot中,可以使用@PropertySource注解来引用外部配置文件。 首先,在你的Spring Boot应用的主配置文件(通常是application.properties或application.yml)中添加以下配置: ``` spring.config.name=application spring.config.location=classpath:/config/ ``` 这个配置告诉Spring Boot去查找名为application的配置文件,并将其位置设定为classpath:/config/,也就是在项目的src/main/resources目录下的config文件夹中。 接下来,在你的Spring Boot应用的启动类中,使用@PropertySource注解来引用外部配置文件。例如,如果你想引用一个名为custom.properties的配置文件,可以在启动类上添加@PropertySource注解: ``` @SpringBootApplication @PropertySource("classpath:/config/custom.properties") public class YourApplication { public static void main(String[] args) { SpringApplication.run(YourApplication.class, args); } } ``` 然后,你就可以在应用中使用@Value注解来注入配置文件中的属性值了。例如,如果你的custom.properties文件中有一个属性名为custom.message,你可以在你的Spring Bean中使用@Value注解来注入这个值: ``` @Component public class YourBean { @Value("${custom.message}") private String message; // ... } ``` 这样,Spring Boot就会将配置文件中的custom.message属性值注入到YourBean的message属性中。 总结起来,只需要在主配置文件中配置外部配置文件的位置,然后使用@PropertySource注解来引用外部配置文件,最后使用@Value注解来注入配置文件中的属性值即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值