摘要:
## 根据数组对象中某个属性去重 ``` let newTags = tags.reduce(function (tmpArr, item) { if (tmpArr.findIndex((tmp) => tmp.name item.name) -1) { tmpArr.push(item) } r 阅读全文
摘要:
Nacos将集群启动设置为单机启动 cluster 改为 standalone 启动即可. 阅读全文
摘要:
Js下载文件 /** * 下载文件 * @param path * @param name */ downFile (path, name) { let link = document.createElement('a') link.style.display = 'none' link.href 阅读全文
摘要:
JS计算两日期时间差 时间戳 var timestamp = Date.parse(new Date()); var timestamp = (new Date()).valueOf(); var timestamp=new Date().getTime(); 小时:3600*1000 分钟:60* 阅读全文
摘要:
**错误原因:**Stream的groupingBy 方法,key为null导致的 **解决方法:**加一个filter过滤null值 阅读全文
摘要:
**错误原因:**通过BigDecimal的divide方法进行除法时当不整除,出现无限循环小数时,就会抛异常:java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decim 阅读全文
摘要:
一、调用到JDK内部访问限制API无法打包问题 当maven项目里面有用到JDK内部的一些类或者接口而导致无法打包成功时,在pom.xml加上下面配置 解决方法: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>mav 阅读全文
摘要:
// lastMonth.add(item.getNowMonthPlanSettle() != null ? item.getNowMonthPlanSettle() : new BigDecimal(0)); 这样累加会都是0 lastMonth = lastMonth.add(item.get 阅读全文
摘要:
打开搜索框,让后输入 services.msc 禁用 Windows Update 服务 netplwiz 阅读全文
摘要:
一、编辑user表 打开mysql数据库下的user表 -- 1.查询用户名和密码 SELECT user,authentication_string FROM `user` WHERE `user`='root'; -- 2.更改数据库密码 UPDATE `user` SET authentica 阅读全文