当前位置: 首页 > news >正文

Spring Boot 项目中读取 YAML 文件中的数组、集合和 HashMap

在 Spring Boot 项目中,我们经常使用 YAML 文件来配置应用程序的属性。在这篇博客中,我将模拟如何在 Java 的 Spring Boot 项目中读取 YAML 文件中的数组、集合和 HashMap。

1. 介绍

YAML(YAML Ain't Markup Language)是一种人类可读的数据序列化格式,通常用于配置文件。在 Spring Boot 中,我们可以使用 @ConfigurationProperties 注解和 application.yml 文件轻松管理应用程序的配置。

2. 准备工作

首先,确保你的 Spring Boot 项目中包含以下依赖:

        <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></dependency>

3. 创建 YAML 文件

src/main/resources 目录下创建一个名为 application.yml 的文件,并添加以下内容:

server:port: 6666
lps:languages:- Java- Python- C- C++- C#colors:- red- green- bluefruits:- name : appleprice : 3.88- name : bananaprice : 2.88- name : orangeprice : 5.28ages:john: 30alice: 25bob: 35

这个文件包含了两个数组、一个水果列表和一个年龄的 HashMap。

4. 创建配置类

创建一个 Java 配置类,用于将 YAML 文件中的属性映射到对象。创建一个名为 AppProperties.java 的文件:

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Map;/*** @author 阿水* @ClassName LpsProperties * @description: TODO* @date 2023年11月26日* @version: 1.0*/
@Component
@ConfigurationProperties(prefix = "lps")
@Data
public class LpsProperties {private String[] languages;private List<String> colors;private List<Fruits> fruits;private Map<String, Integer> ages;@Datapublic static class Fruits {private String name;private Double price;}
}

5. 注入配置类

在你的服务或组件中,通过 @Autowired 注解将 AppProperties 配置类注入,然后访问其中的属性:

 @AutowiredLpsProperties lpsProperties;

6. 运行项目

在你的应用程序中使用 LpsProperties类,并调用方法,你将能够从 YAML 文件中读取数组、集合和 HashMap,并在控制台上输出它们。

@SpringBootTest
class CountDemoApplicationTests {@AutowiredLpsProperties lpsProperties;@Testvoid contextLoads() {String[] languages = lpsProperties.getLanguages();System.out.print("常见编程语言:");for (String language : languages) {System.out.print(language + " ");}System.out.println("等等");System.out.println("----------------------");Map<String, Integer> ages = lpsProperties.getAges();ages.forEach((key, value) -> System.out.println(key + "今年" + value + "岁"));System.out.println("----------------------");List<String> colors = lpsProperties.getColors();for (String color : colors) {System.out.println("收到的颜色为:" + color);}System.out.println("----------------------");List<LpsProperties.Fruits> fruits = lpsProperties.getFruits();fruits.forEach(fruit -> System.out.println(fruit));}}

7. 结论

通过使用 @ConfigurationProperties 注解和 YAML 文件,我们可以轻松地将配置属性映射到 Java 对象中。这使得在 Spring Boot 项目中管理数组、集合和 HashMap 的配置变得简单而直观。

希望这篇博客对你在 Spring Boot 项目中读取 YAML 文件中的数组、集合和 HashMap 有所帮助。如有疑问或建议,请随时提出。

http://www.lryc.cn/news/249041.html

相关文章:

  • Python正则表达式:match()和search()函数全面解读
  • AIGC ChatGPT4总结Linux Shell命令集合
  • 力扣labuladong——一刷day61
  • nacos配置变更导致logback日志异常
  • 【spring(五)】SpringMvc总结 SSM整合流程
  • 1、windows10系统下Qt5.12.0与卸载
  • WebGL/threeJS面试题扫描与总结
  • Qt connect()方法Qt::ConnectionType
  • HIVE SQL时间函数
  • linux磁盘的LVM、交换分区以及文件系统
  • 【HDFS】ActiveNamenodeResolver#getNamespaces 方法调用点梳理
  • 算法—双指针
  • ​[Oracle]编写程序,键盘输入n,计算1+前n项之和。测试案例:输入:10 输出:22.47​
  • 【视觉SLAM十四讲学习笔记】第三讲——旋转向量和欧拉角
  • 【UGUI】制作用户注册UI界面
  • 【UE】透视效果
  • 前端下载文件或者图片方式,window.open或者a标签形式
  • webpack配置scss loader
  • k8s有状态部署mysql主从(local pv持久化)
  • 下载并安装anaconda和VScode,配置虚拟环境,并使用VScode运行代码
  • 拼图 游戏
  • python循环语句和函数
  • php框架dcat-admin速查笔记
  • 【Java】文件I/O-文件内容操作-输入输出流-Reader/Writer/InputStream/OutputStream四种流
  • rocky8.9配置K8S集群kubernetes,centos同理
  • Linux下的文件IO之系统IO
  • iptables防火墙之SNAT与DNAT
  • Python与设计模式--命令模式
  • uni-app 自带返回方法onBackPress,返回上一级并且刷新页面内容获取最新的数据
  • python用YOLOv8对图片进行分类