注意:读取到静态属性中 springboot无法通过给静态变量赋值,在对应字段的set方法去掉static即可。
代码语言:javascript复制//这两个注解必不可少
@Component
@ConfigurationProperties(prefix = "test")
public class TestConfig
{
/** 验证码类型 */
private static String captchaType;
public static String getCaptchaType() {
return captchaType;
}
public void setCaptchaType(String captchaType) {
TestConfig.captchaType = captchaType;
}
}