DB2驱动程序使用的类 – weblogic.jdbc.db2.DB2Driver,在Weblogic 14c开发版本中丢失。

huangapple go评论74阅读模式
英文:

DB2 Driver with class - weblogic.jdbc.db2.DB2Driver missing for Weblogic 14c development version

问题

我安装了WebLogic 14c的开发者版本,看起来开发者版本没有预安装DB2驱动程序,因此在使用重新配置向导升级12c域后,出现以下错误:

> CFGFWK-42066:缺少驱动程序类

> 驱动程序类:weblogic.jdbc.db2.DB2Driver

DB2驱动程序使用的类 – weblogic.jdbc.db2.DB2Driver,在Weblogic 14c开发版本中丢失。

在WebLogic 12C中使用这个驱动程序类配置了数据源,我希望在WebLogic 14c中也能重用相同的JNDI数据源,而无需进行任何修改。

包 - weblogic.jdbc.db2 属于Oracle,而不是IBM,所以我想我必须在Oracle的某个站点上找到相关的jar包。

英文:

I installed developer version of weblogic 14c and looks like developer version doesn't has DB2 drivers pre installed as I get below errors after upgrading 12c domain using reconfig wizard ,

> CFGFWK-42066:Missing driver class

> Driver Class :weblogic.jdbc.db2.DB2Driver

DB2驱动程序使用的类 – weblogic.jdbc.db2.DB2Driver,在Weblogic 14c开发版本中丢失。

Data sources were configured using this driver class in Weblogic 12C and I would like to reuse same JNDI datasources in Weblogic 14c as well without doing any modifications.

Package - weblogic.jdbc.db2 belongs to Oracle & not IBM so I guess I must find relevant jar at some Oracle site.

答案1

得分: 1

第三方 JDBC 驱动程序并不总是随 WebLogic 服务器一起安装,如文档中所述,请在您的 WebLogic Server 安装中定位您的 JDBC 驱动程序,并按照文档中的说明将其添加到类路径中。
DB2 驱动程序应位于 oracle_common/modules/datadirect/wldb2.jar 文件中。
如果 JDBC 驱动程序不存在,您可以从完整的 WebLogic 服务器安装中复制它。

英文:

Thrid party jdbc drivers are not always installed along with WebLogic server as stated in the documentation Locate your JDBC driver in your WebLogic Server installation and add it to your classpath as described in the doc.
DB2 driver should be located in oracle_common/modules/datadirect/wldb2.jar file
If the jdbc driver is not present you can copy it from a full weblogic server installation.

huangapple
  • 本文由 发表于 2020年10月12日 20:14:10
  • 转载请务必保留本文链接:https://go.coder-hub.com/64317686.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定