是否可以强制终止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
答案 0 :(得分:1)
根据tomcat8-dbcp的源代码。调用close(true)
org.apache.tomcat.jdbc.pool.DataSourceProxy
后,类变量pool
将重置为 null 。但是,一旦其他方法访问pool
变量,就会使用相同的配置创建一个新对象。因此,您不必重新初始化DataSource。