0

我有以下问题:

我使用 jdbcTemplate 通过 Spring 连接数据库。

当我运行程序时,出现以下错误:

Cannot create JDBC driver of class 'oracle.jdbc.driver.OracleDriver' for connect URL 'jdbc:oracle:thin:@10.0.0.8:1521:productdb'

我的代码是:

Connection con = jdbc.getDataSource().getConnection();

ArrayDescriptor desciptor = ArrayDescriptor.createDescriptor(
                    "string_array", con);
4

1 回答 1

0

<property name="accessToUnderlyingConnectionAllowed" value="true"/>在配置文件中。

  Connection dbConn = jdbc.getDataSource().getConnection();org.apache.commons.dbcp.DelegatingConnection del = new org.apache.commons.dbcp.DelegatingConnection(dbConn);
            Connection conn = del.getInnermostDelegate();
            ArrayDescriptor desciptor = ArrayDescriptor.createDescriptor(
                    "STRING_ARRAY",conn);
于 2013-07-01T11:09:37.483 回答