这可能不是最佳答案,但是通过反复试验,我发现我只需要在下面添加一行代码即可解开与OracleConnection的连接,并且一切正常。
...Connection tconn=null;OracleConnection conn=null;Context initCtx = new InitialContext(); Context envCtx = (Context) initCtx.lookup("java:comp/env");DataSource ds = (DataSource) envCtx.lookup("jdbc/myPool");tconn = ds.getConnection();// the following line is needed to unwrap to OracleConnectionconn= tconn.unwrap(OracleConnection.class);tconn.close();...
我敢肯定有一种替代的(也许更好)的方法来为OracleConnection配置Tomcat,但是我不确定该怎么做。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)