zl程序教程

您现在的位置是:首页 >  后端

当前栏目

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

方法 解决 无法 内容 读取 bean properties yml
2023-06-13 09:14:13 时间

注意:读取到静态属性中 springboot无法通过给静态变量赋值在对应字段的set方法去掉static即可

//这两个注解必不可少
@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;
    }
}