码迷,mamicode.com
首页 > 编程语言 > 详细

Spring boot 如何读取jar包外面的properties文件

时间:2017-01-20 10:55:28      阅读:858      评论:0      收藏:0      [点我收藏+]

标签:先来   根目录   http   images   添加   .bat   start   target   配置文件   

 

先来张target跟目录的文件结构

技术分享

conf文件夹中存放的是properties文件,

lib文件夹中存放的是各种jar文件,

start.bat是windows命令行的启动文件。

 

来张properties文件的内容

技术分享

 

 

1. 创建配置文件相关的配置类,每个properties文件对应一个配置类

技术分享

这里使用了@ConfigurationProperties,

prefix是指properties文件中的前缀, 比如 asdf.name, 前缀就是asdf,  实体类中的name对应着asdf后面的name。

locations是指的properties文件的地址,这里我用了file, 而不是classpath,  使用classpath总是出问题,不晓得为什么。  conf文件夹是因为start命令行是在target根目录,当前运行的目录就是target根目录。

 

2. 在application类中添加@EnableConfigurationProperties

技术分享

有几个配置类,就要加几个类。

 

3. 在要使用的地方导入

技术分享

4. 可以使用了

技术分享

 

Spring boot 如何读取jar包外面的properties文件

标签:先来   根目录   http   images   添加   .bat   start   target   配置文件   

原文地址:http://www.cnblogs.com/yfdream/p/6322116.html

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