Jetty 无法从 WTP 插件启动
当我在 Eclipse 中启动 Jetty 服务器(使用 jetty-wtp 插件)时,控制台输出以下错误消息: 引起:java.lang.NoClassDefFoundError: javax/transaction/UserTransaction
我的安装环境是:
- JDK 1.6.0
- jetty 8.0.0.M2
- jetty-wtp
我该如何解决这个问题?
When I start Jetty server in Eclipse (using the jetty-wtp plugin) the console output this error message:Caused by: java.lang.NoClassDefFoundError: javax/transaction/UserTransaction
My installed environment is:
- JDK 1.6.0
- jetty 8.0.0.M2
- jetty-wtp
How can I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将 JTA API 添加到您的类路径中。您可以从 java.net Maven 存储库下载:
Try adding the JTA API to your classpath. You can download from the java.net Maven repo at
转到“服务器”视图(我使用左下角的弹出列表),然后双击本地主机上的 Jetty 服务器。这将显示配置。选择“打开启动配置”带下划线的链接。这将打开一个配置面板,然后将缺少的 jar 添加到类路径:javax.transaction_1.1.1。该 jar 位于 jetty/lib 目录中。我在 Oracle 网站上寻找它,但链接已损坏。
Go to the "Server" view (I use the bottom left list popup list), then double-click on the Jetty Server at localhost. This will bring up the configuration. Select "open launch configuration" underlined link. This brings up a configuration panel, then add to the classpath the missing jar: javax.transaction_1.1.1. This jar is located in the jetty/lib dir. I was looking for it on Oracle website, but there, the link is broken.