摘要:
@ResponseExcel(writeHandler={CustomCellStyleWriteHandler.class})public List<excelVO> download(){};工具類: import com.alibaba.excel.write.handler.RowWrite
閱讀全文
posted @ 2025-06-20 17:48
茫無所知
閱讀(43)
推薦(0)
摘要:
業(yè)務場景:公司要求臨時開發(fā)一個小項目,部署windows服務器,后端項目:使用之前現(xiàn)有的后端框架(前后端不分離的那種)。前端項目:前端開發(fā)人員自己搞的一個單獨的前端框架。 難題:領導初期想法前端dist包直接嵌入到后端框架中,部署時只使用一個后端包。試了不行!!! 解決:分別部署,java環(huán)境啟動后
閱讀全文
posted @ 2025-05-24 11:01
茫無所知
閱讀(28)
推薦(0)
摘要:
//設置分頁 searchSourceBuilder.from(1); searchSourceBuilder.size(5); //排序 searchSourceBuilder.sort("age", SortOrder.DESC); searchSourceBuilder.sort("id",
閱讀全文
posted @ 2024-10-30 18:15
茫無所知
閱讀(67)
推薦(0)
摘要:
動態(tài)生成excel,內容跟隨表頭填充 組裝調用工具方法: List<FileTitleEntity> titleEntityList = new ArrayList<>(); titleEntityList.add(new FileTitleEntity("name", "姓名")); titleE
閱讀全文
posted @ 2024-10-22 14:51
茫無所知
閱讀(1888)
推薦(0)
摘要:
public class ExcelRowColorHandler implements CellWriteHandler { private final Integer columnIndex; private final Set<Integer> redRowIndex; private fin
閱讀全文
posted @ 2024-10-22 14:49
茫無所知
閱讀(479)
推薦(0)
摘要:
需求: 監(jiān)控rabbitmq總消息數(shù)量,設置閾值,自動發(fā)送郵件提醒 效果: 添加主機后,可用性為“未知”時解決方案: 查看端口netstat -naltp,沒有10051,只有10050,說明server沒有啟動,但是systemctl并沒有報錯 , 查看日志: cat /var/log/zabbi
閱讀全文
posted @ 2023-09-05 11:45
茫無所知
閱讀(347)
推薦(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
茫無所知
閱讀(295)
推薦(0)
摘要:
工具類inputstream轉為MultipartFile /** * inputStream轉MultipartFile * @param inputStream * @param fileName * @return */ public static FileItem createFileIte
閱讀全文
posted @ 2023-06-16 14:19
茫無所知
閱讀(722)
推薦(0)
摘要:
public void testWordToPDF(HttpServletResponse response) throws Exception { String FILE_NAME = "E:\\1111.docx"; InputStream inputStream = new FileInput
閱讀全文
posted @ 2023-04-26 17:40
茫無所知
閱讀(552)
推薦(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
茫無所知
閱讀(96)
推薦(0)