Eclipse 未部署 Web 应用程序的所有 jar 文件
我们有一个不平凡的多模块 Maven 项目,然后有一个单模块 Maven Web 应用程序,它依赖于较大的多模块项目中的 2 个模块。
当我们使用eclipse部署到tomcat时,它并没有部署多模块项目中的项目所需的所有jar(spring、camel等),但是多模块jar却存在???
但是,如果我们要在单模块应用程序上导出一个 war 文件,它会包含我们需要的一切 spring、camel 以及所有预期的多模块 jar 吗?为什么导出和部署的工作方式不同以及如何让部署按照我想要的方式工作。
我们使用的是 eclipse 3.6.2 以及 m2eclipse 和其他插件。看起来 Eclipse Indigo 在处理 Maven 项目方面比 3.6 最差。
We have a non-trivial multi-module maven project, then have a single module maven web-app that depends on 2 modules in the larger multi module project.
When we use eclipse to deploy to tomcat, it doesn't deploy all the jars that are required (spring, camel, etc) by the projects in the multi-module projects, but the multi-module jars are present???
But if we were to do an export of a war file on the single module app it includes everything we need spring, camel, and all the multi-module jars as expected? Why do export and deploy work differently and how can I get deploy to work the way I want.
We are using eclipse 3.6.2 with m2eclipse and other plugins. It seems Eclipse Indigo is worst at handling maven projects than 3.6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是我半定期遇到的同一问题。打开项目的构建路径,然后在“导出”选项卡中选中“Maven 依赖项”复选框。清理并重新部署 Web 应用程序。
可能需要删除 &将 web 应用程序重新添加到服务器,我通常必须退出 Eclipse 并重新启动它。
This seems to be the same problem that I encounter semi-regularly. Open the build path for the project, and in the Exports tab, check the Maven dependencies checkbox. Do a clean and reploy the webapp.
It may be necessary to remove & readd the webapp to the server, and I usually have to quit Eclipse and restart it.