使用Spring 2.0.2.RELEASE和hikari 2.7.6和finchley.rc2。
仍然得到concurrent.futures
。刷新端点错误。
我无法使用hikari 2.7.4(尽管它解决了我的问题,但是我正在跟踪当前,空闲,挂起的连接等池资源的使用情况,NaN等值即将到来。因此如何使用hikari 2.7做到这一点。 6?
有没有一种方法可以将hikari排除在Referh之外?或类似的东西?
仅供参考:我已经为mysql创建了自定义数据源(读/写拆分)
Caused by: java.lang.IllegalStateException: The configuration of the pool is sealed once started. Use HikariConfigMXBean for runtime changes
这是我的数据库属性
datasource.write.jdbc-url=jdbc:mysql://172.16.1.122:3306/db?zeroDateTimeBehavior=convertToNull
datasource.write.username=root
datasource.write.password=root
datasource.write.driver-class-name=com.mysql.jdbc.Driver
datasource.write.platform=mysql
datasource.write.continue-on-error=true
datasource.write.testOnBorrow=true
datasource.write.connection-test-query=SELECT 1
datasource.write.maximum-pool-size=1
datasource.read.jdbc-url=jdbc:mysql://172.16.2.122:3306/db?zeroDateTimeBehavior=convertToNull
datasource.read.username=root
datasource.read.password=root
datasource.read.driver-class-name=com.mysql.jdbc.Driver
datasource.read.platform=mysql
datasource.read.continue-on-error=true
datasource.read.testOnBorrow=true
datasource.read.connection-test-query=SELECT 1
datasource.read.maximum-pool-size=20