org.springframework.beans.factory.annotation.Value的@Value的默认值如何设置呢?
解决方法:
默认值方法@Value("${enableRedis:false}")
application.xml中:
enableRedis: true
代码注入enableRedis:
@Value("${bxCustomerProps.enableRedis:false}")
public void setEnableRedis(boolean isEnableRedis) {
enableRedis = isEnableRedis;
}