0

我需要对 Subclipse Eclipse svn 插件进行一些修改。为此,我需要连接到特定的 Oracle 数据库,但我的代码一直在这条线上死机:

Class.forName("oracle.jdbc.OracleDriver");

带着(惊喜):

ClassNotFoundException

我已将 ojdbc.jar 添加到我的项目的构建路径(org.tigris.subversion.subclipse.core,尝试连接到数据库的项目)

这在常规项目中工作正常,只是不适用于 Subclipse 插件,所以我猜它没有被部署。

我确实在这个菜单中检查了它:

Configure Build Path -> Order and Export

知道我做错了什么吗?

4

1 回答 1

0
  1. Copy the jar to the plugin directory.
  2. Open the file "META-INF/MANIFEST.MF" in the plugin project directory, switch to the "runtime" tab, and then click "add" button the the "class-path" section to select the driver jar file.
于 2013-05-24T02:57:34.817 回答