spring boot yaml 自定义配置 映射到 java POJO

Posted jxlsblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot yaml 自定义配置 映射到 java POJO相关的知识,希望对你有一定的参考价值。

 

 

只需要一个注解就ok: 

@ConfigurationProperties("user.other")

“user.other” 这个值匹配的是user下的other对象

 

 

yaml :

yaml 的语法:  https://yaml.org/spec/1.2/spec.html#directive//

user:
  user-name: addiction
  age: 19
  friends:
    - Smith
    - Shadow
    - Kathrin
  other:
    grand-test: test
    color: colorful
    price: $223
    test:
      -
        user-name: addiction
        age: 19
      -
        user-name: addiction
        age: 19
      -
        user-other: addiction
        age-other: 19
    other:
      test: "this is test"
      nums:
        - 1
        - 2
        - 65

 

UserProperty类: 

其中的属性名要和yml一一对应,  grandTest 在 yml 中对应的是 grand-test, 会自动转成驼峰

用 lombok 的 @Data  注解 生成getter/setter, 加上spring 的 @Component 方便 依赖注入

@Data
@Component
@ConfigurationProperties("user.other")
public class UserProperty {
    private String grandTest;
    private String color;
    private String price;

    private List<Map<String, Object>> test;

    private Other other; //POJO 类
}

 

 

Other 类

@Data
public class Other {

    private String test;

    private List<Integer> nums;
}

 

 

测试结果: 

 

技术图片

技术图片

 

测试基类

package com.example.demo;

import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class BaseTest {
}

 

 

另外还可使用@Value注解修饰属性来获取yaml中的内容:

@Value("${user.other.color}")
private String color;

 

以上是关于spring boot yaml 自定义配置 映射到 java POJO的主要内容,如果未能解决你的问题,请参考以下文章

玩转Spring Boot 自定义配置导入XML配置与外部化配置

将 Yaml 中的列表映射到 Spring Boot 中的对象列表

Spring Boot自定义静态资源映射

SpringBoot配置文件(热部署Properties和YAML自定义属性对象集合)

Spring Boot2.0自定义配置文件使用

如何自定义配置源交给Spring Boot管理