springboot 读取yml报错

发布于 2021-12-08 07:56:27 字数 1167 浏览 1003 评论 4

springboot 读取yml配置,当使用prefix时就报错。

代码1(正常):

@Configuration
@ConfigurationProperties
public class AccountConfig {

    String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name= name;
    }
}

application.yml配置
name: z张三

代码2(报错):

@Configuration
@ConfigurationProperties(prefix = "test")
public class AccountConfig {

    String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name= name;
    }
}

application.yml配置:
test:
  name: z张三

错误信息:

Failed to bind properties under 'test' to com.test.config.AppConfig$$EnhancerBySpringCGLIB$$96509be8:

    Property: test
    Value: 
    Origin: "test" from property source "class path resource
    Reason: No converter found capable of converting from type [java.lang.String] to type [@org.springframework.boot.context.properties.ConfigurationProperties com.test.config.AppConfig$$EnhancerBySpringCGLIB$$96509be8]

Action:

Update your application's configuration

 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

甜柠檬 2021-12-08 19:04:58

引用来自“赵云涛”的评论

用@Value注解

情场扛把子 2021-12-08 18:14:16

引用来自“JYD_XL”的评论

代码2(报错):

@Configuration

改为

@Component
睫毛上残留的泪 2021-12-08 16:06:44

用@Value注解

三月梨花 2021-12-08 08:04:11

代码2(报错):

@Configuration

改为

@Component
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文