Websphere 8.5.5.2 Liberty Profile–;jdbc连接错误

Websphere 8.5.5.2 Liberty Profile–;jdbc连接错误,websphere,jdbctemplate,websphere-liberty,Websphere,Jdbctemplate,Websphere Liberty,我正在运行WebSphere Application Server 8.5.5.2/wlp-1.0.5.CL5020140403-1858,并尝试使用InterSystems cacheDB jdbc驱动程序:jdbc驱动程序版本:2014.1.1.702 这将产生以下致命错误: java.sql.SQLException: Not supported at com.intersys.jdbc.CacheConnection.getTypeMap(CacheConnection.java:18

我正在运行WebSphere Application Server 8.5.5.2/wlp-1.0.5.CL5020140403-1858,并尝试使用InterSystems cacheDB jdbc驱动程序:jdbc驱动程序版本:2014.1.1.702

这将产生以下致命错误:

java.sql.SQLException: Not supported at 
com.intersys.jdbc.CacheConnection.getTypeMap(CacheConnection.java:1857) at 
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)  at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at 
java.lang.reflect.Method.invoke(Method.java:606)
似乎
getTypeMap
需要在那里,而不是。有解决办法吗?
谢谢。

看来InterSystems JDBC驱动程序没有实现完整的功能,根据上找到的文档,似乎不支持java.sql.Connection方法getTypeMap。请尝试直接联系InterSystems寻求帮助。getTypeMap似乎需要在那里,但它没有。方法就在那里
com.intersys.jdbc.CacheConnection.getTypeMap
,它是引发异常的方法
java.sql.SQLException:Not supported at
。您可能应该直接从应用程序连接到数据库,而不是尝试通过Liberty概要文件。或者,如Miljenko所说,直接联系该公司。什么代码以反射方式调用getTypeMap(即,异常的下几个堆栈帧是什么)?即使JDBC驱动程序不支持该方法,Liberty概要文件中的某些组件也可能更好地处理此错误。