06 2023 档案
摘要:服务部署成功,但是每次进入登录页面都报一下错误,需要重新刷新才可以,推测试Nginx跳转出问题。 后来在Nginx配置文件加了这两行再重启就可以了。 index index.html index.htm; try_files $uri $uri/ /index.html; 校验Nginx配置文件格式
阅读全文
摘要:EasyExcel导入导出多sheet页 依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>3.1.0</version> <scope>compile</scope>
阅读全文
摘要:list.stream() .collect( Collectors.collectingAndThen( Collectors.toCollection( () -> new TreeSet<>(Comparator.comparing(e -> e.getId)) ), ArrayList::n
阅读全文