
java list集合操作
使用java8新特性stream进行List去重 List newList = list.stream().distinct().collect(Collectors.toList()); System.out.pr...
使用java8新特性stream进行List去重 List newList = list.stream().distinct().collect(Collectors.toList()); System.out.pr...
/** * String字符串转成List<Long>数据格式 * String str = "1,2,3,4,5,6" -> List<Long> listLo...
mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
原因是因为服务器限制了上传大小修改nginx.conf的值就可以解决了可以选择在http{ }中设置:client_max_body_size 20m;也可以选择在server{ }中设置:client_max_bo...
第一种方法File file = ResourceUtils.getFile("classpath:template.docx");//获取文件的相对路径 可在控制台打印查看输出结果String filePath...