摘要:
1. 将需要包含表查询并放到临时表中:show tables; 2. 使用下面SQL生成删除不必要表的SQL: select concat('drop table if exists `', a.table_name, '`;') from information_schema.tables a l 阅读全文
摘要:
1. 加载ssl证书的工具类 public class SslUtil { private static volatile SSLContext sslContext = null; // type是PKCS12、path是pfx文件路径、password是pfx对应的密码 public stati 阅读全文