如何使用 Cargo 将 WAR 部署到现有 Tomcat 6 实例上?
我很久以前就使用 Windows 安装程序安装了 Tomcat,它作为一项服务在我的开发笔记本电脑上运行良好。 现在我正在整理我的项目,并希望使用 Cargo (或类似的东西)将更新的 WAR 部署到本地 Tomcat 上。
我找不到任何包含正确 XML 的 POM 文件的完整示例,并且正在努力处理 Cargo 站点上的部分示例。
是否有人有可以发布的 POM,或者知道可以链接到的野外示例?
FWIW 我得到的错误是这样的 - 尽管我尝试了许多不同的参数组合:
无法创建配置。 有 没有注册配置 参数(容器[id = [tomcat6x],类型 = [本地]], 配置类型[现有])。 实际上没有有效的类型 注册此配置。 也许你拼写错误 是吗?
我什至不确定我首先是否确切地知道“类型”的错误意味着什么!
更新:我最终找到了 m2eclipse WTP 集成插件,坦率地说,它非常棒!
I installed Tomcat using the Windows installer ages ago and it runs fine as a service on my development laptop. Now I'm mavenising my project and would like to use Cargo (or something similar) to deploy updated WARs onto the local Tomcat.
I can't find any fully worked examples of a POM file containing the right XML to do this and am struggling with the partial examples on the Cargo site.
Does anyone have a POM they can post or know of an example in the wild they can link to?
FWIW the error I get is this - though I've tried many different combinations of parameters:
Cannot create configuration. There's
no registered configuration for the
parameters (container [id =
[tomcat6x], type = [local]],
configuration type [existing]).
Actually there are no valid types
registered for this configuration.
Maybe you've made a mistake spelling
it?
I'm not even sure I know exactly what the error means by a "type" in the first place!
Update: I eventually found the m2eclipse WTP integration plugin, which frankly rocks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有理由只使用货物吗?
您可以尝试使用 maven tomcat 插件来将您的 wars 部署到 tomcat。 请参阅有关 配置 和 部署。
Is there a reason to use just cargo?
You can try the maven tomcat plugin in order to deploy your wars to tomcat. See the instructions about configuration and deployment.