Java如何使用ConfigurationProperties获取yml中的配置
短信预约 -IT技能 免费直播动态提醒
使用ConfigurationProperties获取yml的配置
我们在开发过程中,会经常遇到需要自定义配置的场景,比如配置一个ip,一个地址等,并将其写入到yml文件中,在项目中使用@Value("${xxxx.xxxx}")来获取自定义的配置,其实是这样是有些笨重的,每定义一个配置,都需要写一个@Value来获取,那为啥不使用一个java config来统一获取配置呢?
使用方法
编写yml配置文件
user:
config:
# user_name user-name userName这三种配置方式都可以被识别到
user_name: "zhangsan"
age: "20"
exmail: "123@123.com"
address: "火星"
编写Java config类
// 需要重写get与set方法,此处使用lombok注解来代替
@Data
// 实例化到spring容器中
@Component
// 获取前缀为user.config的配置信息,与该类下的属性对比,进行绑定
@ConfigurationProperties(prefix = "user.config")
public class UserConfig {
private String userName;
private String age;
private String exmail;
private String address;
}
在需要使用的地方注入
@Resource
private UserConfig userConfig;
测试
@ConfigurationProperties获取不到配置文件属性值问题
application.yml
配置类
@Component
@ConfigurationProperties(prefix = "system")
public class SystemConfig {
private static String name;
private String version;
private String copyrightYear;
private boolean demoEnabled;
private static String winUploadPath;
private static String otherUploadPath;
private static boolean addressEnabled;
public static String getName() {
return name;
}
public void setName(String name) {
SystemConfig.name = name;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getCopyrightYear() {
return copyrightYear;
}
public void setCopyrightYear(String copyrightYear) {
this.copyrightYear = copyrightYear;
}
public boolean isDemoEnabled() {
return demoEnabled;
}
public void setDemoEnabled(boolean demoEnabled) {
this.demoEnabled = demoEnabled;
}
public static String getWinUploadPath() {
return winUploadPath;
}
public static void setWinUploadPath(String winUploadPath) {
SystemConfig.winUploadPath = winUploadPath;
}
public static String getOtherUploadPath() {
return otherUploadPath;
}
public static void setOtherUploadPath(String otherUploadPath) {
SystemConfig.otherUploadPath = otherUploadPath;
}
public static boolean isAddressEnabled() {
return addressEnabled;
}
public void setAddressEnabled(boolean addressEnabled) {
SystemConfig.addressEnabled = addressEnabled;
}
public static String getUploadPath() {
OsInfo osInfo = SystemUtil.getOsInfo();
// 判断系统环境获取上传路径
if(ObjectUtils.isNotEmpty(osInfo) && osInfo.isWindows()){
return getWinUploadPath();
}else{
return getOtherUploadPath();
}
}
public static String getSystemName() {
return getName();
}
}
name、addressEnabled 以及 winUploadPath、otherUploadPath 都是静态的成员变量,但是他们name、addressEnabled能获取到配置文件的值,winUploadPath、otherUploadPath不可以。
原因就是
winUploadPath、otherUploadPath对应的ser方法也定义为了静态方法。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341