JDBC 查询mysql数据库比客户端工具慢的解决办法
在URL链接参数中配置rewriteBatchedStatements、useServerPrepStmts为true
url="jdbc:mysql://****/dbName?useSSL=false&rewriteBatchedStatements=true&useServerPrepStmts=true&cachePrepStmts=true&autoReconnect=true&failOverReadOnly=false"
查询调用情况:
show global status like '%prepare%';
李小家