spring boot 读取配置文件信息
Posted until—u
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 读取配置文件信息相关的知识,希望对你有一定的参考价值。
1.读取application.properties
@Component @ConfigurationProperties(prefix="images.product.column") public class ColumnImageConfig { private String path; public String getPath() { return path; } public void setPath(String path) { this.path = path; } }
使用:在需要的地方 注入该文件,@Autowired xxxConfig xxx; 调用xxx.getXxx()方法即可
以上是关于spring boot 读取配置文件信息的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 通过@ConfigurationProperties和@PropertySource读取自定义配置文件信息