码迷,mamicode.com
首页 > 其他好文 > 详细

peizhiwenjian

时间:2018-08-29 22:51:52      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:指定   void   div   java   rgs   ota   spring   source   eee   

自定义配置文件

如果你不想使用application.properties作为配置文件,怎么办?完全没问题

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);
    }
}

 或者

修改

在application.properties中支持指定j2cache配置文件,让你开发环境和生产环境分离

j2cache.config-location=/j2cache-${spring.profiles.active}.properties
/ABC/J/D/DEEE
j2cache.config-location=/classpath:config/jdbc222222.properties

peizhiwenjian

标签:指定   void   div   java   rgs   ota   spring   source   eee   

原文地址:https://www.cnblogs.com/xingzc/p/9557367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!