小编典典

使用OraclePreparedStatement通过Tomcat 8.5.9从Java 8写入oracle 11.2数据库吗?

tomcat

我在使用带有Tomcat 8.5.9的Java 8写入Oracle
11.2数据库时遇到问题。实际上,以下代码可以很好地写入存储过程,但是直接写入数据库时​​出现错误。

Context initCtx = new InitialContext(); 
Context envCtx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource) envCtx.lookup("jdbc/myPool");
conn = ds.getConnection();

// The following works fine:   
cs = conn.prepareCall( "{call my_proc (?,?)}" );
cs.setString(1, var1);
cs.registerOutParameter(2, Types.VARCHAR); 
cs.execute();
out_var2 = cs.getString(2);

// The following results in a ClassCastException error:
sql ="INSERT INTO MY_TABLE1 (my_value1, my_value2) VALUES (?,?)";
ps = (OraclePreparedStatement) conn.prepareStatement(sql);

// The following results in the same error, but is an example of using Oracle extensions for setXXX():
sql="INSERT INTO MY_TABLE2 (my_value3, my_value4) VALUES (?,?)";
ps = (OraclePreparedStatement) conn.prepareStatement(sql);       
for (ii=0; ii<var100.length; ii++) {
     ps.setBinaryFloat(3,  my_value3[ii]);
     ps.setBinaryDouble(4, my_value4[ii]);
     ps.addBatch();
}
ps.executeBatch();

错误是:java.lang.ClassCastException: org.apache.tomcat.dbcp.dbcp2.DelegatingPreparedStatement cannot be cast to oracle.jdbc.OraclePreparedStatement

我最近从GlassFish切换到Tomcat。适用于Glassfish的先前代码是:

OracleDataSource ods = ds.unwrap(OracleDataSource.class);
OracleConnection conn = (OracleConnection) ods.getConnection();
conn = ds.getConnection();
sql_a ="INSERT INTO MY_TABLE (my_value1, my_value2) VALUES (?,?)";
ps_a = (OraclePreparedStatement) conn.prepareStatement(sql_a);

但是java.lang.NullPointerException使用Tomcat 却给出了错误。

我已使用以下链接作为指南配置了tomcat文件:

https://tomcat.apache.org/tomcat-8.5-doc/jndi-datasource-examples-
howto.html

特别是关于Oracle 8i, 9i, & 10g(上下文配置和web.xml)的部分。

知道如何直接写入数据库时​​消除Tomcat错误,同时还允许上述代码在写入存储过程时继续工作吗?


阅读 407

收藏
2020-06-16

共1个答案

小编典典

这可能不是最佳答案,但是通过反复试验,我发现我只需要在下面添加一行代码即可解开与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 OracleConnection
conn= tconn.unwrap(OracleConnection.class);
tconn.close();
...

我敢肯定有一种替代的(也许更好)的方法来为OracleConnection配置Tomcat,但是我不确定该怎么做。

2020-06-16