深入解析Spring Boot中的@ConfigurationProperties注解

embedded/2025/1/1 16:27:33/
深入解析Spring Boot中的@ConfigurationProperties注解

在Spring Boot框架中,配置管理是一个核心功能。Spring Boot提供了多种方式来处理外部配置,其中@ConfigurationProperties注解是一个非常强大且灵活的工具。本文将深入探讨@ConfigurationProperties注解的概念、用法、工作原理、配置绑定、类型安全以及如何在实际开发中应用它。

什么是@ConfigurationProperties?

@ConfigurationProperties是Spring Boot提供的一个注解,用于将外部配置属性绑定到Java对象上。通过使用这个注解,开发者可以将配置文件(如application.propertiesapplication.yml)中的属性值自动映射到Java类的字段上,从而实现配置的集中管理和类型安全。

@ConfigurationProperties的作用
  1. 配置绑定:将配置文件中的属性值绑定到Java类的字段上,实现配置的自动映射。
  2. 类型安全:提供类型安全的配置绑定,避免类型转换错误。
  3. 复杂配置:支持复杂配置结构的绑定,如嵌套对象、集合、Map等。
  4. 配置校验:结合@Valid注解,实现配置属性的校验。
@ConfigurationProperties的基本用法
1. 定义配置类

首先,定义一个Java类,用于绑定配置属性。使用@ConfigurationProperties注解标记该类,并指定前缀(prefix)。

示例代码:

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;@Component
@ConfigurationProperties(prefix = "app")
public class AppProperties {private String name;private String version;private boolean enabled;// getters and setters
}

解释:

  • @ConfigurationProperties(prefix = "app"):指定配置属性的前缀为app
  • @Component:将该类注册为Spring Bean,使其可以被Spring容器管理。
2. 配置文件

application.propertiesapplication.yml文件中定义配置属性。

示例代码(application.properties):

app.name=MyApp
app.version=1.0.0
app.enabled=true

示例代码(application.yml):

app:name: MyAppversion: 1.0.0enabled: true

解释:

  • 配置属性以app为前缀,与@ConfigurationProperties注解中的前缀一致。
3. 启用配置属性支持

在Spring Boot应用的主类或配置类上,使用@EnableConfigurationProperties注解启用配置属性支持。

示例代码:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;@SpringBootApplication
@EnableConfigurationProperties(AppProperties.class)
public class MyAppApplication {public static void main(String[] args) {SpringApplication.run(MyAppApplication.class, args);}
}

解释:

  • @EnableConfigurationProperties(AppProperties.class):启用AppProperties类的配置属性绑定支持。
@ConfigurationProperties的高级用法
1. 嵌套对象绑定

@ConfigurationProperties支持嵌套对象的绑定,可以实现复杂配置结构的映射。

示例代码:

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;@Component
@ConfigurationProperties(prefix = "app")
public class AppProperties {private String name;private String version;private boolean enabled;private Server server;// getters and setterspublic static class Server {private String host;private int port;// getters and setters}
}

配置文件(application.properties):

app.name=MyApp
app.version=1.0.0
app.enabled=true
app.server.host=localhost
app.server.port=8080

配置文件(application.yml):

app:name: MyAppversion: 1.0.0enabled: trueserver:host: localhostport: 8080

解释:

  • 嵌套对象Server的属性可以通过app.server前缀进行绑定。
2. 集合和Map绑定

@ConfigurationProperties支持集合和Map类型的绑定,可以实现更灵活的配置结构。

示例代码:

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;import java.util.List;
import java.util.Map;@Component
@ConfigurationProperties(prefix = "app")
public class AppProperties {private String name;private String version;private boolean enabled;private List<String> features;private Map<String, String> settings;// getters and setters
}

配置文件(application.properties):

app.name=MyApp
app.version=1.0.0
app.enabled=true
app.features[0]=feature1
app.features[1]=feature2
app.settings.key1=value1
app.settings.key2=value2

配置文件(application.yml):

app:name: MyAppversion: 1.0.0enabled: truefeatures:- feature1- feature2settings:key1: value1key2: value2

解释:

  • 集合features和Mapsettings的属性可以通过app.featuresapp.settings前缀进行绑定。
3. 配置校验

结合@Valid注解,可以实现配置属性的校验,确保配置的有效性。

示例代码:

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import org.springframework.validation.annotation.Validated;import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;@Component
@ConfigurationProperties(prefix = "app")
@Validated
public class AppProperties {@NotEmptyprivate String name;@NotNullprivate String version;private boolean enabled;// getters and setters
}

解释:

  • @Validated:启用校验支持。
  • @NotEmpty@NotNull:对nameversion字段进行非空校验。
@ConfigurationProperties的工作原理

@ConfigurationProperties注解的工作原理主要涉及以下几个步骤:

  1. 属性扫描:Spring Boot应用启动时,会扫描所有带有@ConfigurationProperties注解的类。
  2. 属性绑定:根据注解中指定的前缀,将配置文件中的属性值绑定到类的字段上。
  3. 类型转换:Spring Boot内置了多种类型转换器,可以将配置属性值转换为相应的Java类型。
  4. 校验:结合@Valid注解,对绑定的配置属性进行校验。
@ConfigurationProperties的最佳实践
  1. 合理划分配置类:根据功能模块合理划分配置类,避免单个配置类过于庞大。
  2. 使用嵌套对象:对于复杂配置结构,使用嵌套对象进行绑定,提高配置的可读性和可维护性。
  3. 配置校验:结合@Valid注解,对配置属性进行校验,确保配置的有效性。
  4. 文档和注释:在配置类中添加文档和注释,说明配置属性的作用和取值范围,方便团队成员理解和维护。
结论

@ConfigurationProperties是Spring Boot中一个非常强大且灵活的工具,用于将外部配置属性绑定到Java对象上。通过使用这个注解,开发者可以实现配置的集中管理和类型安全,提高开发效率和代码质量。

希望通过本文的讲解,你对Spring Boot中的@ConfigurationProperties注解有了更深入的理解,并能在实际开发中灵活应用。


http://www.ppmy.cn/embedded/149822.html

相关文章

4.银河麒麟V10(ARM) 离线安装 MySQL

1. 系统版本 [rootga-sit-cssjgj-db-01u ~]# nkvers ############## Kylin Linux Version ################# Release: Kylin Linux Advanced Server release V10 (Lance)Kernel: 4.19.90-52.39.v2207.ky10.aarch64Build: Kylin Linux Advanced Server release V10 (SP3) /(La…

微服务篇-深入了解 MinIO 文件服务器(你还在使用阿里云 0SS 对象存储图片服务?教你使用 MinIO 文件服务器:实现从部署到具体使用)

&#x1f525;博客主页&#xff1a; 【小扳_-CSDN博客】 ❤感谢大家点赞&#x1f44d;收藏⭐评论✍ 文章目录 1.0 MinIO 文件服务器概述 1.1 MinIO 使用 Docker 部署 1.2 MinIO 控制台的使用 2.0 使用 Java 操作 MinIO 3.0 使用 minioClient 对象的方法 3.1 判断桶是否存在 3.2…

linux 7.6安装mysql 8.0步骤如下

linux 7.6安装mysql 8.0步骤如下&#xff1a; 注意&#xff1a;在导入密钥的时候这个不行&#xff0c;可更换为 rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023

ElasticSearch 统计分析全攻略

在大数据时代&#xff0c;数据的价值不仅在于存储&#xff0c;更在于能够从中挖掘出有意义的信息。ElasticSearch 作为一款强大的分布式搜索引擎&#xff0c;除了具备出色的搜索功能外&#xff0c;其内置的统计分析能力也不容小觑&#xff0c;能够助力我们快速洞察数据背后的规…

systemverilog语法:assertion summary

topics assertion 介绍 Property在验证中的应用 ended表示sequence执行结束。 property 立即断言不消耗时间&#xff0c;好像if…else…&#xff0c;关键字不含property. 并发断言消耗时间&#xff0c;关键字含property. 立即断言 并发断言

YOLOv8模型改进 第二十五讲 添加基于卷积调制(Convolution based Attention) 替换自注意力机制

早期视觉识别模型主要基于 ConvNets&#xff08;如 VGGNet、Inception 系列、ResNet 系列&#xff09;&#xff0c;它们通过堆叠构建块和金字塔架构聚合大感受野响应&#xff0c;但忽略了全局上下文信息建模。2020 年起&#xff0c;视觉 Transformer&#xff08;ViTs&#xff0…

巧用mask属性创建一个纯CSS图标库

说明 mask 是CSS中的一个属性&#xff0c;它允许开发者在元素上设置图像作为遮罩层。这个属性的强大之处&#xff0c;在于它可以接受多种类型的值&#xff0c;包括关键字值、图像值、渐变色&#xff0c;甚至可以设置多个属性值。 SVG&#xff08;Scalable Vector Graphics&…

【电脑组装】【教程】一、主板和CPU

前言 笔者最近淘汰了一块技嘉的主板&#xff08;其实是没Intel的CPU了&#xff09;&#xff0c;又多出来一组AMD的主板CPU组合&#xff0c;装个新系统看看。 淘汰的主板如图&#xff08;还不错的主板&#xff0c;可慢出&#xff0c;有意者可联系&#xff09;&#xff1a; 一…