摘要:
一、异步执行 实现方式二种: 1. 使用异步注解@aysnc、启动类:添加@EnableAsync注解2. JDK 8本身有一个非常好用的Future类——CompletableFuture @AllArgsConstructor public class AskThread implements 阅读全文
摘要:
方案一: spring: servlet: multipart: enabled: true max-file-size: 10MB max-request-size: 10MB 方案二: @Configuration public class MultipartConfig { @Bean pub 阅读全文
摘要:
https://blog.csdn.net/u014286840/article/details/115033198 阅读全文
摘要:
https://baijiahao.baidu.com/s?id=1667725885292502238&wfr=spider&for=pchttps://blog.csdn.net/bornfree5511/article/details/106439233新老vs code都需要安装 Setti 阅读全文
摘要:
/** * 根据key前缀批量删除 * * @param keyPrefix 键前缀字符串 * @return 结果 */ public static boolean delAll(String keyPrefix) { if (keyPrefix != null) { Set<String> ke 阅读全文
摘要:
pidof java|xargs pwdx 阅读全文
摘要:
mysqladmin -u root password NEWPASS 阅读全文
摘要:
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 阅读全文