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

  • 相关阅读:
    P1880 [NOI1995]石子合并
    LC 1388. Pizza With 3n Slices
    1129 Recommendation System
    1131 Subway Map
    C#中的lamda实用的select用法
    C# Image与Base64编码互转函数
    签名算法的URL
    xml格式封装数据
    layer 相关网址
    js-清空array数组
  • 原文地址:https://www.cnblogs.com/javalinux/p/14809153.html
Copyright © 2011-2022 走看看