09 2021 档案
摘要:首先按照网上经验,添加了如下db连接参数,dbUrl=xxx&rewriteBatchedStatements=true 关于rewriteBatchedStatements这个参数介绍: MySQL的JDBC连接的url中要加rewriteBatchedStatements参数,并保证5.1.13
阅读全文
摘要:ThreadLocal ThreadLocal是jdk中自带的类,用于保存本线程专有的数据,从下面的代码大家可以很直接的看到它的作用 private static ThreadLocal<String> sThreadLocal=new ThreadLocal<>(); @Test void tes
阅读全文
摘要:目前需要优化如下一段sql: select ... from table where (`is_deleted` = 0) and( `begin_time` <= '2021-09-14 17:36:45.858' ) and( `end_time` >= '2021-09-14 17:36:45
阅读全文