springboot 自定义文件 读取
在我们开发过程中,有时候并不满足一些基本配置,而想要自己配置一些东西...
首先你得创建一个配置文件吧
配置文件内容:
#tomcat 服务器地址,端口号,显示图片
custom.image_service_path=http://localhost:8080
#图片保存路径
custom.image_drive_path=E:/apache-tomcat-7.0.40-dataCenter/apache-tomcat-7.0.40/webapps/ROOT/image
custom你可以把它看做一个类,而image_service_path是类拥有的一个属性,至少我是这么认为的
自定义配置文件好啦
接下来就是定义配置类啦
locations : 配置文件所在的位置
prefix : 类的前缀名
接下来就轮到启动程序啦 在springboot入口 添加注解
@EnableConfigurationProperties({CustomSettings.class})
这个类对应你自定义的类
然后就是注入咯
@Autowired
CustomSettings customSettings;
这样你就可以通过 get方法调用
String drive_path=CustomSettings.getImage_drive_path();
欧啦!!!
每天坚持一丢丢,进步一丢丢...