在Spring Boot中如何使用@ConfigurationProperties绑定配置参数呢?

戚薇 SpringBoot 发布时间:2022-07-12 17:05:01 阅读数:17559 1
下文笔者讲述springboot中使用@ConfigurationProperties绑定配置参数的方法分享,如下u宋史
我们都知道
属性绑定,我们通常使用@Value("${property}") 注解进行绑定,
但是当属性出现分层的现象,则编写比较繁琐
针对这个现象SpringBoot引入@ConfigurationProperties注解
例:
@Data
@ConfigurationProperties("java.service")
public class MyProperties {
    
    //get set代码省略
    private boolean enabled = true;

    private InetAddress remoteAddress;

    private final Security security = new Security();

    @Data
    public static class Security {

        private String username;

        private String password;
        // 如果这个属性配置的话,默认是“USER”
        private list<String> roles = new ArrayList<>(Collections.singleton("USER"));

    }
}
在配置文件中进行如下配置:

java:
  service:
    enabled: true
    remoteAddress: 127.0.0.1
    security:
     username: java265user
     password: password
     roles:
       - role1
       - role2

@ConfigurationProperties重要属性说明

@ConfigurationProperties( value = "java.service",
                          ignoreInvalidFields = false,
                          ignoreUnknownFields = false)
ignoreInvalidFields:
   是否忽略非法值,如将一个字符串 "test"赋值给 bool 值,不忽略的话会报启动异常。
ignoreUnknownFields:
   对于多余的配置是否会报异常
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202207/3965.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者