标签:tle 对象 connect ref static server target username jdbc
Connection对象不能作为全局的参数。
这个问题是并发的问题.. 两个线程同时访问Connection对象,其中一个线程把connection关了,另外一个线程拿着已关闭的连接去用的时候就会报这个错误了
public static Connection GetConnection() {
Connection conn = null; //请注意这里设置为局部变量
try {
conn = DriverManager.getConnection(url, username, password);
} catch (Exception e) {e.printStackTrace();}
return conn;
}
将Connection conn设置为局部变量,即可解决这个问题。
标签:tle 对象 connect ref static server target username jdbc
原文地址:https://www.cnblogs.com/huanghongbo/p/12834960.html