SpringBoot中yml、Properties配置注入Map、List

application.yml

wm:
  test-str: 9527
  test-map: {one: '1', two: '2'}
  test-list:
    - one
    - two
    - three
    - 孙悟空

YmlTestConfig.java

package com.wm.work.database.vo;

import lombok.Data;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import java.util.List;

/**
 * @Auther: wm
 * @Date: 2021-08-17 22:58
 * @Description:获取配置文件的map list str 可以通过-转换成驼峰命名
 * 使用 InitializingBean.afterPropertiesSet 赋值给静态变量
 */
@Component
@Data
@ConfigurationProperties(prefix = "wm")
public class YmlTestConfig implements InitializingBean {

    private MapVO testMap;

    private List<String> testList;

    private String testStr;

    public static MapVO testMapVO;
    public static List<String> testStrList;

    @Override
    public void afterPropertiesSet() throws Exception {
        YmlTestConfig.testMapVO = testMap;
        YmlTestConfig.testStrList = testList;
    }

    @Data
    public static class MapVO {
        private String one;

        private String two;
    }
}

TEST.JAVA

package com.wm.work.database;

import com.wm.work.database.vo.YmlTestConfig;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class WmWorkDatabaseApplicationTests {

   @Autowired
   private YmlTestConfig ymlTestConfig;

   @Test
   void getValueList() {
      System.out.println(ymlTestConfig.getTestList());
      System.out.println(ymlTestConfig.getTestMap());
      // 打印
//    [one, two, three, 孙悟空]
//    YmlTestConfig.MapVO(one=1, two=2)
   }

   @Test
   void getValueConfig() {
      System.out.println(YmlTestConfig.testMapVO);
      System.out.println(YmlTestConfig.testStrList);
      // 打印
//    YmlTestConfig.MapVO(one=1, two=2)
//    [one, two, three, 孙悟空]
   }

}

getValueConfig 打印输出

getValueConfig 打印输出

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值