摘要: 一、异步执行 实现方式二种: 1. 使用异步注解@aysnc、启动类:添加@EnableAsync注解2. JDK 8本身有一个非常好用的Future类——CompletableFuture @AllArgsConstructor public class AskThread implements 阅读全文
posted @ 2022-04-07 16:29 西门长海 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 方案一: spring: servlet: multipart: enabled: true max-file-size: 10MB max-request-size: 10MB 方案二: @Configuration public class MultipartConfig { @Bean pub 阅读全文
posted @ 2022-04-07 14:22 西门长海 阅读(3718) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u014286840/article/details/115033198 阅读全文
posted @ 2022-04-07 12:41 西门长海 阅读(115) 评论(0) 推荐(0) 编辑
摘要: https://baijiahao.baidu.com/s?id=1667725885292502238&wfr=spider&for=pchttps://blog.csdn.net/bornfree5511/article/details/106439233新老vs code都需要安装 Setti 阅读全文
posted @ 2022-04-07 10:19 西门长海 阅读(180) 评论(0) 推荐(0) 编辑
摘要: /** * 根据key前缀批量删除 * * @param keyPrefix 键前缀字符串 * @return 结果 */ public static boolean delAll(String keyPrefix) { if (keyPrefix != null) { Set<String> ke 阅读全文
posted @ 2022-04-07 09:31 西门长海 阅读(3111) 评论(0) 推荐(0) 编辑
摘要: pidof java|xargs pwdx 阅读全文
posted @ 2022-04-07 09:18 西门长海 阅读(183) 评论(0) 推荐(0) 编辑
摘要: mysqladmin -u root password NEWPASS 阅读全文
posted @ 2022-04-07 09:15 西门长海 阅读(20) 评论(0) 推荐(0) 编辑
摘要: select dept_id, dept_name as name , parent_id as pid, case when exists( select 1 from sys_dept t2 where a.dept_id = t2.parent_id) then 0 else 1 end as 阅读全文
posted @ 2022-04-07 09:09 西门长海 阅读(287) 评论(0) 推荐(0) 编辑