Eclipse Galileo 不会将外部 jar 部署到 WEB-INF/lib 目录中

发布于 2024-08-12 21:20:53 字数 460 浏览 7 评论 0原文

我创建了新的网络项目 testweb。

默认情况下,默认输出文件夹是testweb\build\classes

添加了一些 jar 来构建路径。

然后在“Java EE 模块依赖项”中选择这些 jar,以便 Eclipse 在部署到某个服务器时将这些 jar 放入 WEB-INF/lib 中。

然后我从 Eclipse 在服务器(JBoss)上部署了这个 Web 应用程序。

一切正常 - WEB-INF/lib 目录中有 jars。

但是,如果我将默认输出文件夹从 testweb\build\classes 更改为 testweb\web\WEB-INF\classes Eclipse 将停止将外部 jar 部署到 WEB-INF/lib 目录。

该目录是空的! 为什么? 怎么了?

I created new web project testweb.

By default default output folder is testweb\build\classes.

Added some jars to build path.

Then selected these jars in "Java EE Module Dependencies" in order to Eclipse put this jars into WEB-INF/lib during deploying on some server.

Then I deployed this web application from Eclipse on server(JBoss).

All is ok - there are jars in WEB-INF/lib directory.

But if I change default output folder from testweb\build\classes to testweb\web\WEB-INF\classes Eclipse stops to deploy external jars to WEB-INF/lib directory.

This directory is empty!
Why?
What is wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弄潮 2024-08-19 21:20:53

看起来像 bug 266268 ,也在 此线程
注意:

  • 这是针对 eclipse3.4 的,最新的 eclipse3.5.1 是否仍然存在此问题(因为“Galileo”可能只是 3.5)?
  • 有一个调试过程

感谢 Larry 和他的调试提示,我找到了这个问题的根源:
不要使用 WEB-INF/classes 作为默认输出文件夹。有一个错误(可能),使得 Eclipse 在这种情况下以不同的方式计算项目内容。

因此解决方案是更改默认输出文件夹。

该错误与 错误 249044 重复,据报告已在 WTP3 中修复。 0.5:您的 Galileo eclipse 使用什么版本的 WTP?

Looks like bug 266268 , also described in this thread.
Notes:

  • this was for eclipse3.4, do you still have this issue with the latest eclipse3.5.1 (since "Galileo" could be just 3.5)?
  • there is a debug procedure.

Thanks to Larry and his hints for debugging I found the source cause of this:
don't use WEB-INF/classes as the default output folder. There is a bug (probably), that makes eclipse to calculate project contents differently in this case.

So the workaround solution is to change the default output folder.

The bug is a duplicate of bug 249044, reported fixed in WTP3.0.5: what version of WTP do you have with your Galileo eclipse?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文