Posted in Java/Android onMarch 18, 2022
自定义配置Boolean属性不生效
记录一下,今天遇到一个很坑的问题,boolean值类型的字段不能以is开头,不然获取不到配置文件中的值
如何设置boolean属性
几个要点
配置文件 ftp.started=false
类:
//是否启动ftp任务
private boolean ftpStarted;
public String isFtpStarted() {
return ""+ftpStarted;
}
public void setFtpStarted(String ftpStarted) {
if (ftpStarted.equalsIgnoreCase("true")) {
this.ftpStarted = true;
}else {
this.ftpStarted = false;
}
}
spring配置文件:
<bean id="RcsFtpManager" class="com.feinno.security.rcs.rcsi.ftp.RcsFtpManager">
<property name="ftpStarted" value="${ftp.started}"/>
</bean>
原理很简单,spring设置后转化为内部boolean类型,有其他方法可交流,应该是比较笨的方法
以上为个人经验,希望能给大家一个参考,也希望大家多多支持三水点靠木。
springboot 自定义配置 解决Boolean属性不生效
- Author -
weixin_44207812- Original Sources -
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@