目录结构:
读取方法
ClassPathResource classPathResource = new ClassPathResource("json/simpleGroupWithRef.json");
String nodeCells = FileUploadUtil.readString(classPathResource.getFile());
List<Node> nodes = objectMapper.readValue(nodeCells, new TypeReference<List<Node>>(){});
深入ClassPathResource 分析一下
可以得出
String path = this.getClass().getClassLoader().getResource("json/simple.json").getPath();
同样可以得到路径