因此,我使用的是在Spring中定义的数据源,效果很好。然后,我更新了项目,以从运行应用程序的Weblogic服务器获取数据源。除一种情况外,这对于大多数对数据库的调用也可以正常工作-这种情况涉及根据Java中使用Structs定义的数据库类型向数据库发送对象列表。
完整方法是:
@Override
public List<String> saveAllocation(String originalId, List<Parcel> parcels) throws SQLException {
if(originalId == null || parcels == null) {
return null;
}
List<String> results = null;
String result = null;
String log = null;
OracleConnection oracleConnection = (OracleConnection)jdbcTemplate.getDataSource().getConnection();
try {
OracleCallableStatement cs = (OracleCallableStatement) oracleConnection.prepareCall("{ call PACKAGE.Update(?, ?, ?, ?) }");
Struct[] cpoList = new Struct[parcels.size()];
for(int i = 0; i < parcels.size(); i++) {
Object[] obj = new Object[] { parcels.get(i).getParcel_id(), parcels.get(i).getPublicID().toUpperCase() };
Struct struct = oracleConnection.createStruct("SCHEME_NAME.PARCEL_OBJ", obj);
cpoList[i] = struct;
}
Array array = oracleConnection.createARRAY("SCHEME_NAME.PARCEL_TAB", cpoList);
cs.setString(1, originalId);
cs.setArray(2, array);
cs.registerOutParameter(3, Types.VARCHAR);
cs.registerOutParameter(4, Types.VARCHAR);
cs.executeUpdate();
log = cs.getObject(3).toString();
result = cs.getObject(4).toString();
results = new ArrayList<>();
results.add(result);
results.add(log);
} catch(SQLException e) {
//Log exception
return results;
} catch(Exception e) {
//Log exception
return results;
} finally {
if (cs != null) {
cs.close();
}
}
return results;
}
}
数据库对象定义为:
PARCEL_OBJ
create or replace TYPE parcel_obj AS OBJECT
(PARCEL_ID VARCHAR2(11),
PUBLIC_ID VARCHAR2(20));
PARCEL_TAB
create or replace TYPE parcel_tab IS TABLE OF parcel_obj;
应用程序在线失败
Array array = oracleConnection.createARRAY("SCHEME_NAME.PARCEL_TAB", cpoList);
该异常消息是:
java.sql.SQLException: Fail to convert to internal representation: weblogic.jdbc.wrapper.Struct_oracle_sql_STRUCT@187>
我的JNDI连接在我的application.properties中定义,例如:
spring.datasource.jndi-name=jdbc/pio
任何帮助将不胜感激!
答案 0 :(得分:0)
如documentation所述。
默认情况下,用于Array,Blob,Clob,NClob,Ref, SQLXML和Struct,以及ParameterMetaData和ResultSetMetaData 对象用WebLogic包装器包装。
在某些情况下,将wrapping参数设置为false可以大大提高性能,并允许应用程序使用本机驱动程序。
我看不到禁用该选项的问题,因为它在首先调用struct
之类的对象时会引起问题。