本文介绍了java.lang.ClassNotFoundException:在Worklight平台或项目中找不到类com.ibm.db2.jcc.DB2Driver的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试测试连接到db2的sql适配器,但是我得到以下结果:

I try to test an sql adapter that connects to db2 but I get the following result:

这是我的代码:

<dataSourceDefinition>
    <driverClass>com.ibm.db2.jcc.DB2Driver</driverClass>
    <url>jdbc:db2://localhost:50000/WLTEST</url>
    <user>db2admin</user>
    <password>db2admin</password>
</dataSourceDefinition>

任何想法出了什么问题?

any idea what is going wrong?

推荐答案

你的意思是你的Worklight数据库是基于DB2的?如果是,

Do you mean that your Worklight database is DB2-based? If yes,


  • 确保使用正确的DB2设置编辑worklight.properties

还要确保:


  • DB2 Connector驱动程序存在于server\lib文件夹中

这篇关于java.lang.ClassNotFoundException:在Worklight平台或项目中找不到类com.ibm.db2.jcc.DB2Driver的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 17:36