摘要: 参考地址: https://blog.csdn.net/hutuyaoniexi/article/details/126782030#:~:text=%E5%A6%82%E6%9E%9C%E4%BD%A0%E6%83%B3%E5%9C%A8ruoyi 阅读全文
posted @ 2024-10-08 15:18 sensen~||^_^|||& 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1. 使用Feign Client时,启动项目报错,找不到FallbackFactory,eg: No fallbackFactory instance of type class com.jichu.chezhan.api.factory.RemoteDeviceCategoryFallbackF 阅读全文
posted @ 2024-09-02 14:21 sensen~||^_^|||& 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 转自:http://t.csdnimg.cn/jl1ZN 原文链接:https://blog.csdn.net/wzhy2016/article/details/131178612 操作流程: 创建Callable实现类的实例,并实现call方法。 使用FutureTask类来包装Callable对 阅读全文
posted @ 2024-08-27 16:05 sensen~||^_^|||& 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 解决: 1. 点击config Table (点击后也可以查看并修改字段类型是否都配置对,也可以不修改) 2. 重启idea即可 阅读全文
posted @ 2024-08-23 14:28 sensen~||^_^|||& 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 使用Navicat创建定时执行任务: 1. 准备需要定时执行的sql脚本: 如定时更新时间: update your_table y set y.update_time = NOW() where y.id = '123'; 2. 创建函数: ① 进入navicat找到函数选择新建函数,填写名称并选 阅读全文
posted @ 2024-08-15 15:22 sensen~||^_^|||& 阅读(909) 评论(0) 推荐(0) 编辑
摘要: PDF转word网站(懒人办公): https://www.lanren.work/ 阅读全文
posted @ 2024-08-14 14:15 sensen~||^_^|||& 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1.controller: @PostMapping("/import-excel")@Transactionalpublic AjaxResult importExcel(@RequestPart(value = "file") MultipartFile file) throws Excepti 阅读全文
posted @ 2024-08-08 15:26 sensen~||^_^|||& 阅读(4) 评论(0) 推荐(0) 编辑
摘要: eg: @Override public void exportExcel(HttpServletResponse response) throws Exception{ // 创建Excel文档 XSSFWorkbook workbook = new XSSFWorkbook(); XSSFShe 阅读全文
posted @ 2024-08-06 15:11 sensen~||^_^|||& 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1. Annotation: ① FillOnInsert import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPol 阅读全文
posted @ 2024-08-02 11:07 sensen~||^_^|||& 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 方式一: public List<DevCategory> list() { List<DevCategory> allList = devCategoryDao.findAllData(); return allList.stream().filter(s -> s.getPid() == nul 阅读全文
posted @ 2024-08-01 14:45 sensen~||^_^|||& 阅读(3) 评论(0) 推荐(0) 编辑