概述
SpringBoot读取Property
在web开发的过程中,经常需要自定义一些配置文件作为全局配置(数据库连接之类的)。
在SpringBoot中,读取property文件会很简单。
真的很简单,,不信看下面 ▼.▼
【1】在application.yml中添加追加如下配置(yml格式)
#yml语法比起 properties更加方便,,,
xatu:
zsl:
name: 小鼠标
age: 21
id: 10086
【2】编写获取配置信息的类
package xatu.zsl.domain;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
/**
* Created by zsl on 2017/9/4.
*/
@Component
public class XatuZSLinfo {
@Value("${xatu.zsl.name}")
private String name;
@Value("${xatu.zsl.id}")
private String id;
@Value("${xatu.zsl.age}")
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
【3】搞个测试方法,试试
@Autowired
private XatuZSLinfo properties;
@GetMapping("/getzsl")
public XatuZSLinfo getXatuZSLinfo() {
return properties;
}
最后
以上就是粗犷手链为你收集整理的【系统学习SpringBoot】SpringBoot读取Property配置的全部内容,希望文章能够帮你解决【系统学习SpringBoot】SpringBoot读取Property配置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复