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