zoukankan      html  css  js  c++  java
  • 查询全国城市行政区

    @PostMapping("/allAddressInfo")
    @ApiOperation(consumes = MediaType.APPLICATION_JSON_VALUE, value = "查询城市区域信息")
    public R getProvinceCityInfo() {
    List<Province> provinceList = addressInfoService.getAllCityInfo();
    return R.ok(provinceList);
    }

    @Override
    public List<Province> getAllCityInfo() {
    String key = ADDRESS_PREFIX + "allCityInfo";
    ValueOperations<String, List<Province>> operations = redisTemplate.opsForValue();
    // 缓存存在
    boolean hasKey = redisTemplate.hasKey(key);
    if (hasKey) {
    List<Province> provinces = operations.get(key);
    LOGGER.info("getProvinces >>>> 从缓存查询到全国城市信息");
    return provinces;
    }
    List<ProvinceCityArea> provinceCityAreas = provinceCityAreaMapper
    .selectList(new QueryWrapper<ProvinceCityArea>().eq("pid", 0));
    List<Province> provinces = new ArrayList<>();
    provinceCityAreas.forEach(p -> {
    Province province = new Province();
    province.setName(p.getName());
    province.setCode(String.valueOf(p.getId()));
    List<City> cityList = new ArrayList<>();

    List<ProvinceCityArea> cities = provinceCityAreaMapper
    .selectList(new QueryWrapper<ProvinceCityArea>().eq("pid", p.getId()));
    cities.forEach(c -> {
    List<Area> areas = new ArrayList<>();
    List<ProvinceCityArea> cityAreas = provinceCityAreaMapper
    .selectList(new QueryWrapper<ProvinceCityArea>().eq("pid", c.getId()));
    cityAreas.forEach(a -> {
    Area area = new Area();
    area.setCode(String.valueOf(a.getId()));
    area.setName(a.getName());
    areas.add(area);
    });
    City city = new City();
    city.setName(c.getName());
    city.setCode(String.valueOf(c.getId()));
    city.setChildren(areas);
    cityList.add(city);
    });
    province.setChildren(cityList);
    provinces.add(province);
    });
    operations.set(key, provinces);
    return provinces;
    }

    —————————————————————————————————————————
    @PostMapping("/provinceCity")
    @ApiOperation(consumes = MediaType.APPLICATION_JSON_VALUE, value = "查询省市信息")
    public R getProvinceCity() {
    List<Province> provinceList = addressInfoService.provinceCityes();
    return R.ok(provinceList);
    }

    @Override
    public List<Province> provinceCityes() {
    String key = ADDRESS_PREFIX + "provinceCityInfo";
    ValueOperations<String, List<Province>> operations = redisTemplate.opsForValue();
    // 缓存存在
    boolean hasKey = redisTemplate.hasKey(key);
    if (hasKey) {
    List<Province> provinces = operations.get(key);
    LOGGER.info("getProvinces >>>> 从缓存查询到全国城市信息");
    return provinces;
    }
    List<ProvinceCityArea> provinceCityAreas = provinceCityAreaMapper
    .selectList(new QueryWrapper<ProvinceCityArea>().eq("pid", 0));
    List<Province> provinces = new ArrayList<>();
    provinceCityAreas.forEach(p -> {
    Province province = new Province();
    province.setName(p.getName());
    province.setCode(String.valueOf(p.getId()));
    List<City> cityList = new ArrayList<>();

    List<ProvinceCityArea> cities = provinceCityAreaMapper
    .selectList(new QueryWrapper<ProvinceCityArea>().eq("pid", p.getId()));
    cities.forEach(c -> {

    City city = new City();
    city.setName(c.getName());
    city.setCode(String.valueOf(c.getId()));
    cityList.add(city);
    });
    province.setChildren(cityList);
    provinces.add(province);
    });
    operations.set(key, provinces);
    return provinces;
    }

    —————————————————————————————————————————
    20195月中华人民共和国县以上行政区划代码
    http://www.mca.gov.cn/article/sj/xzqh/2019/201901-06/201906211421.html
  • 相关阅读:
    语句覆盖、判断覆盖、条件覆盖、条件判定组合覆盖、多条件覆盖、修正条件覆盖
    Python日志
    Python基础
    curl-awk-grep
    bash使用 变量定义与使用、预定义变量、数组变量、变量计算、掐头去尾与内容替换、数字比较大小、字符串比较、判断文件夹是否存在、逻辑控制if/for/while/
    V模型 W模型 H模型 X模型 前置测试模型
    算法:回文、素数
    JAVA并发思维导图
    工作常见的git命令
    dubbo同步/异步调用的方式
  • 原文地址:https://www.cnblogs.com/pxzbky/p/12172050.html
Copyright © 2011-2022 走看看