是否可以强制终止tomcat-dbcp
连接池和任何打开的连接?然后重新初始化池,重用池配置?
@Autowired
private org.apache.tomcat.jdbc.pool.DataSource ds;
ds.close(true);
//ds.open(); does not exists. how to reinitialize, without having to reconfigure the pool
是否可以强制终止tomcat-dbcp
连接池和任何打开的连接?然后重新初始化池,重用池配置?
@Autowired
private org.apache.tomcat.jdbc.pool.DataSource ds;
ds.close(true);
//ds.open(); does not exists. how to reinitialize, without having to reconfigure the pool
根据tomcat8-dbcp的源代码。close(true)
调用of后org.apache.tomcat.jdbc.pool.DataSourceProxy
,类变量pool
将重置为null。pool
但是一旦其他方法访问该变量,将使用相同的配置创建一个新对象。因此,您不必重新初始化 DataSource。