@ConfigurationProperties 无法将yml或properties中的内容读取到bean解决方法

2022-10-29 09:54:35 浏览数 (1)

注意:读取到静态属性中 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;
    }
}

0 人点赞