java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > @EnableConfigurationProperties的使用

Spring中的@EnableConfigurationProperties使用方式以及作用详解

作者:搏·梦

这篇文章主要介绍了Spring中的@EnableConfigurationProperties使用方式以及作用详解,使用了 @ConfigurationProperties 注解的配置类生效,将该类注入到 IOC 容器中,交由 IOC 容器进行管理,此时则不用再配置类上加上@Component,需要的朋友可以参考下

@ConfigurationProperties

在@ConfigurationProperties的使用,把配置类的属性与yml配置文件绑定起来的时候,还需要加上@Component注解才能绑定并注入IOC容器中,若不加上@Component,则会无效。

@EnableConfigurationProperties的作用:则是将让使用了 @ConfigurationProperties 注解的配置类生效,将该类注入到 IOC 容器中,交由 IOC 容器进行管理,此时则不用再配置类上加上@Component。

代码例子

1. @ConfigurationProperties的使用

(提外话:具体的yml文件字符串、List、Map的书写方式并使用@ConfigurationProperties注入配置类.)

配置类

@Component
@ConfigurationProperties(prefix = "demo")
@Data
public class DemoConfig {
    private String userName;
    private String age;
}

yml配置文件

demo:
  user-name: hello
  age: 18

测试代码

@Component
public class demo implements ApplicationRunner {

    @Autowired
    DemoConfig demoConfig;

    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println(demoConfig);
    }
}

结果图:

在这里插入图片描述

2. @EnableConfigurationProperties的使用

当去掉配置类的@Component时候,则会报下面错误提示:

在这里插入图片描述

在测试代码上加上@EnableConfigurationProperties,参数指定那个配置类,该配置类上必须得有@ConfigurationProperties注解

@Component
@EnableConfigurationProperties(DemoConfig.class)
public class demo implements ApplicationRunner {

    @Autowired
    DemoConfig demoConfig;

    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println(demoConfig);
    }
}

结果图,仍然可以绑定

在这里插入图片描述

3. 为什么会有@EnableConfigurationProperties出现呢?

到此这篇关于Spring中的@EnableConfigurationProperties使用方式以及作用详解的文章就介绍到这了,更多相关@EnableConfigurationProperties的使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文