Apache Derby 数据库的 ClassNotFoundException
我正在尝试使用 Eclipse 在网络模式下为我的 J2EE Web 应用程序使用 Apache Derby 我收到以下错误:
ClassNotFoundException: org.apache.derby.jdbc.ClientDriver
SQLException: SQLState: 08001
我已经在系统和项目的类路径变量中添加了 derbyclient.jar 和 derby.jar 。我无法弄清楚问题所在
I am trying to use Apache Derby in Network mode for my J2EE Web App using Eclipse
I am getting the following error:
ClassNotFoundException: org.apache.derby.jdbc.ClientDriver
SQLException: SQLState: 08001
I have already added the derbyclient.jar
and derby.jar
in classpath variable of system and the project. I cannot figure out the problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将
derbyclient.jar
添加到YourProject\WebContent\WEB-INF\lib
。不需要将 derby.jar 添加到类路径。这对我有帮助。
You must add
derbyclient.jar
toYourProject\WebContent\WEB-INF\lib
. Not needed to addderby.jar
to classpath.It's helped me.