其他
Lovme_du
虽然努力不一定能成功,但是不努力真的好爽!
展开
-
java 导出excel为zip文件
java 导出多个excel为zip文件需求:数据导出excel,数据只有一条导出文件为 .xls,多条导出文件为 .zip/** * zip文件下载 * * @param list worbook * @param response response */public void zipDownload(List<Workbook> list, HttpServletResponse response) { ServletOutputStream outputSt原创 2021-08-28 11:05:38 · 842 阅读 · 0 评论 -
Angular 启动 Cannot find module ‘node-sass‘
Angular 启动报错 Cannot find module ‘node-sass’报错:Cannot find module 'node-sass'解决办法:> npm install -g cnpm --registry=https://registry.npm.taobao.org> cnpm install node-sass@4.14.1出现错误:Node Sass version 6.0.0 is incompatible with^4.0.0,需要先执行npm原创 2021-08-18 10:20:24 · 378 阅读 · 0 评论 -
IDEA报错Command line is too long. Shorten command line for xxx or also for SpringBoot default configur
Idea 启动spring boot报错,Error running ‘XxxServerApplication’: Command line is too long. Shorten command line for xxx or also for Spring Boot default configuration.报错日志:All files are up-to-dateError running 'BaseServerApplication': Command line is too long原创 2021-08-18 10:06:16 · 708 阅读 · 0 评论 -
BigDecimal 保留两位小数
public static void main(String[] args) { BigDecimal decimal = new BigDecimal("1.12345"); System.out.println(decimal); BigDecimal setScale = decimal.setScale(4,BigDecimal.ROUND_HALF_DOWN); System.out.println(setScale);原创 2020-07-21 20:40:31 · 3022 阅读 · 1 评论 -
idea使用@data注解报红警告
背景:手动去建立getter和setter方法以及构造函数麻烦,lombok可以为我们胜率这些麻烦的代码。使用maven依赖包:<dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok&...原创 2020-03-23 09:52:25 · 5817 阅读 · 0 评论 -
11个springboot快速开发的项目,接私活利器
参考地址:https://mp.weixin.qq.com/s/i7y1_T_o6Jb6OmwvNc-VoQ转载 2018-12-20 15:55:42 · 5593 阅读 · 1 评论 -
Ionic3启动项目成功,刷新浏览器页面报错‘throw er; // Unhandled 'error' event’!
events.js:183 throw er; // Unhandled 'error' event ^Error: read ECONNRESET at _errnoException (util.js:992:11) at TCP.onread (net.js:618:25)原因:ionic serve 与浏览器通信的websocket版本有问题...翻译 2019-01-08 11:50:26 · 548 阅读 · 0 评论