spring boot中读取配置文件的两种方式
Posted 记录点滴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot中读取配置文件的两种方式相关的知识,希望对你有一定的参考价值。
application.properties
test.name=测试
test.url=www.test.com
在controller里可以这样直接调用
@Value("${test.name}") private String name; @Value("${test.url}") private String url;
[email protected](prefix="test")
新建一个ConfigTest.java
@Component @ConfigurationProperties(prefix="test") public class ConfigTest(){ private String name; private String url; //get--set }
以上是关于spring boot中读取配置文件的两种方式的主要内容,如果未能解决你的问题,请参考以下文章