zoukankan      html  css  js  c++  java
  • springBoot 获取静态json文件信息

    /**
    * @Description 读取静态json文件信息
    * @Author lxy
    * @Date 2019/5/21 17:37
    */
    public static <T> List<T> readJsonFromClassPath(String path, Type type) throws IOException {

    ClassPathResource resource = new ClassPathResource(path);
    if (resource.exists()) {
    return JSON.parseObject(
    resource.getInputStream(),
    StandardCharsets.UTF_8,
    type,
    // 自动关闭流
    Feature.AutoCloseSource,
    // 允许注释
    Feature.AllowComment,
    // 允许单引号
    Feature.AllowSingleQuotes,
    // 使用 Big decimal
    Feature.UseBigDecimal);
    }
    return null;
    }
     

    @GetMapping("/log")
    @ExcludeRequestParam
    public Response getUpdateLog() {
    try {
    return HttpUtil.getSuccessResponse(VersionUtil.readJsonFromClassPath("json/version.json", List.class));
    } catch (Exception e) {
    log.error("Parsing json error,the path is 'json/version.json', class is 'UpdateLogResponse.class' , message is {}", e.getMessage());
    }

    return HttpUtil.getFailResponse(ResponseEnum.NOT_FIND_DATA);
    }

    ————————————————
    版权声明:本文为CSDN博主「江宇123」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/jiangyucaonima/article/details/90478825

  • 相关阅读:
    随便练习的进制转换
    回顾快速排序
    常用c++函数
    POJ 1163 The Triangle
    HDU 1155 Bungee Jumping
    ZOJ 3861 Valid Pattern Lock
    POJ 1273 Drainage Ditches
    Hrbust 2240 土豪的时代
    POJ 3468 A Simple Problem with Integers
    POJ 1061 青蛙的约会
  • 原文地址:https://www.cnblogs.com/javalinux/p/14809153.html
Copyright © 2011-2022 走看看