03 2020 档案
摘要:最近排查线上问题,遇到几次线上日志从凌晨0点到全天的某一个随机的时刻日志丢失了,如图所示,打开每天的第一个文件不是从0点开始的日志,莫名其妙的丢失一部分日志。 项目是spring-boot项目,日志的组件是log4j2 version=1.5.12.RELEASEgroupId=org.spring
阅读全文
摘要:1、微信官方文档,服务端统一消息接口(优先发送小程序模板消息,然后是公众号模板消息) https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/uniform-message/uniformMessage.send.h
阅读全文
摘要:假定要查的数据库名称是“xxxx_mall” 1、查看数据库数据占用大小 select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from information_schema.TABLES where table_schema
阅读全文
摘要:最近在需求code中,在调用一个项目中的方法,一直报如下错,百思不得其解。 HV000151: A method overriding another method must not alter the parameter constraint configuration, but method p
阅读全文
摘要:1、通过字符流或字节流获取 @ApiOperation("desc")@RequestMapping(value = "/api", method = {RequestMethod.GET, RequestMethod.POST}, produces = "application/json;char
阅读全文