获取application.yml配置文件中配置的对象集合

在之前的工作中遇到这样一个问题, 就是在application.yml配置文件中写一些对象集合的数据(当时不让把数据写在数据库中)然后获取他们, 尝试了很多方式都无果, 最终找到了解决的办法, 特此记录一下。

  1. yml中配置好数据:
server:
  port: 17171

test:
  polices:
    - {depart_id: 390307000000,depart_name: xxx公安局1,areacode: 390307,fid: 390307000000}
    - {depart_id: 390307000001,depart_name: xxx公安局2,areacode: 390307,fid: 390307000000}
    - {depart_id: 390307000002,depart_name: xxx公安局3,areacode: 390307,fid: 390308000000}
    - {depart_id: 390307000003,depart_name: xxx公安局4,areacode: 390307,fid: 390308000000}
  1. 写配置文件中对应的类:
package com.itstone.mok.config;

import lombok.Data;
import lombok.ToString;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import java.util.ArrayList;
import java.util.List;

/**
 * yml对应的类
 *
 * @author tianlei
 */
@Configuration
@ConfigurationProperties(prefix = "test")
public class PoliceConfig {

    /**
     * 这里的变量名polices要和yml中的对应字段名称(test.polices)一致!
     */
    private static List<Police> polices = new ArrayList<>();

    /**
     * 注意此处有static关键字!
     *
     * @return
     */
    public static List<Police> getPolices() {
        return polices;
    }

    /**
     * 注意此处没有static关键字!
     *
     * @param polices
     */
    public void setPolices(List<Police> polices) {
        PoliceConfig.polices = polices;
    }

    /**
     * 基础公安局信息, 属性名要与配置文件中的对应好!
     * 注意: 该类要使用static关键字修饰, 否则会报错。
     */
    @Data
    public static class Police {

        /**
         * 部门id
         */
        private Long depart_id;

        /**
         * 部门名称
         */
        private String depart_name;

        /**
         * 区域编码
         */
        private String area_code;

        /**
         * 父级id
         */
        private Long fid;

    }

}
  1. 写Controller访问测试:
package com.itstone.mok.controller;

import cn.hutool.core.util.ObjectUtil;
import com.itstone.mok.config.PoliceConfig;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;

@RestController
public class PoliceController {

    /**
     * 获取指定公安局的area_code
     *
     * @param departId
     * @return
     */
    @GetMapping("/test")
    public String getAreaCode(Long departId) {
        // 获取该数组对象
        List<PoliceConfig.Police> list = PoliceConfig.getPolices();
        // 遍历打印
        for (PoliceConfig.Police police : list) {
            if (ObjectUtil.equal(departId, police.getDepart_id())) {
                return police.getArea_code();
            }
        }
        return "无对应数据";
    }

}
接下来做测试: localhost:17171/test?departId=390307000000, 返回390307, 测试成功!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值