摘要: //设置分页 searchSourceBuilder.from(1); searchSourceBuilder.size(5); //排序 searchSourceBuilder.sort("age", SortOrder.DESC); searchSourceBuilder.sort("id", 阅读全文
posted @ 2024-10-30 18:15 茫无所知 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 动态生成excel,内容跟随表头填充 组装调用工具方法: List<FileTitleEntity> titleEntityList = new ArrayList<>(); titleEntityList.add(new FileTitleEntity("name", "姓名")); titleE 阅读全文
posted @ 2024-10-22 14:51 茫无所知 阅读(9) 评论(0) 推荐(0) 编辑
摘要: public class ExcelRowColorHandler implements CellWriteHandler { private final Integer columnIndex; private final Set<Integer> redRowIndex; private fin 阅读全文
posted @ 2024-10-22 14:49 茫无所知 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 需求: 监控rabbitmq总消息数量,设置阈值,自动发送邮件提醒 效果: 添加主机后,可用性为“未知”时解决方案: 查看端口netstat -naltp,没有10051,只有10050,说明server没有启动,但是systemctl并没有报错 , 查看日志: cat /var/log/zabbi 阅读全文
posted @ 2023-09-05 11:45 茫无所知 阅读(262) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSON; import com.zs.common.core.domain.entity.SysUser; import org.bouncycastle.asn1.gm.GMNamedCurves; import org.bouncycas 阅读全文
posted @ 2023-06-27 14:31 茫无所知 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 工具类inputstream转为MultipartFile /** * inputStream转MultipartFile * @param inputStream * @param fileName * @return */ public static FileItem createFileIte 阅读全文
posted @ 2023-06-16 14:19 茫无所知 阅读(559) 评论(0) 推荐(0) 编辑
摘要: public void testWordToPDF(HttpServletResponse response) throws Exception { String FILE_NAME = "E:\\1111.docx"; InputStream inputStream = new FileInput 阅读全文
posted @ 2023-04-26 17:40 茫无所知 阅读(360) 评论(0) 推荐(0) 编辑
摘要: select t1.id,t1.name from ( select t.id ,t.name ,row_number()over(partition by t.id order by t.date) rn from A t ) t1 where t1.rn<=10; 结果如下: 阅读全文
posted @ 2023-04-13 16:27 茫无所知 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 添加配置信息: 启动项选择:Edit Configurations,添加插件选择插件Deploy to Host 阅读全文
posted @ 2023-03-03 17:14 茫无所知 阅读(100) 评论(0) 推荐(0) 编辑
摘要: /** * 获取数据信息 * * @param selectBOS 原类型列表 * @param i 类型下标(从0开始) * @param name 类型拼接名称(拼接后的每行名称) * @param rowSize 列数(标题数量) * @param dataColumn 组装后的数据结果集 * 阅读全文
posted @ 2022-12-29 15:28 茫无所知 阅读(18) 评论(0) 推荐(0) 编辑