前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SpringBoot 引用不同环境的配置文件, 放在外部的配置文件

SpringBoot 引用不同环境的配置文件, 放在外部的配置文件

作者头像
北漂的我
发布2021-11-02 16:53:48
8950
发布2021-11-02 16:53:48
举报
文章被收录于专栏:北漂的我北漂的我北漂的我

SpringBoot 项目配置文件可以放在外部 application-prod.properties application-test.properties application-dev.properties 这三种环境, 生产, 测试, 开发 环境的配置文件放在所在服务器的指定目录下, application.properties 文件不用动, 还是放在项目里. 用于配置 spring.profiles.active

需要对启动类进行改造

@SpringBootApplication
public class SpringbootDemo1Application {
	
	public static void main(String[] args) throws IOException {
		SpringApplication app = new SpringApplication(SpringbootDemo1Application.class);
		Properties properties = new Properties();
		properties.load(new ClassPathResource("application.properties").getInputStream());
		properties.load(new FileInputStream(new File("/Users/xxxxx/application-"+ properties.getProperty("spring.profiles.active") +".properties")));
		app.setDefaultProperties(properties);
		app.run(args);
	}
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档