如何找到哪个版本的HikariCP与哪个版本的MySQL绑定?我找不到HikariCP的变化。
发布于 2018-08-30 12:32:36
HikariCP的典型MySQL配置可能如下所示:
jdbcUrl=jdbc:mysql://localhost:3306/simpsons user=test password=test dataSource.cachePrepStmts=true dataSource.prepStmtCacheSize=250 dataSource.prepStmtCacheSqlLimit=2048 dataSource.useServerPrepStmts=true dataSource.useLocalSessionState=true dataSource.rewriteBatchedStatements=true dataSource.cacheResultSetMetadata=true dataSource.cacheServerConfiguration=true dataSource.elideSetAutoCommits=true dataSource.maintainTimeStats=false
它使用jdbcUrl配置:
已知MySQL DataSource在网络超时支持方面被打破。请改用jdbcUrl配置。
MySQL Connector / J com.mysql.jdbc.jdbc2.optional.MysqlDataSource
https://stackoverflow.com/questions/-100006074
复制相似问题