在 jBoss AS 7 中部署 EAR,其中包含 WAR 中的 Web 服务
我有一个 EAR 文件,其结构如下所示:
myEar.ear
|
+- META-INF
| |
| +- MANIFEST.MF
| +- application.xml
|
+- lib
| |
| +- aJar.jar
|
+- aWar.war
MANIFEST.MF 是自动生成的并且是空白的,在 application.xml 中只有 warfile 条目。
当我在 jBoss 管理控制台中部署它时,war 包含的 Web 服务不会显示。如果我直接输入战争,它就会显示出来。
您对这个问题有什么建议吗?
谢谢, 达里奥
i've an EAR file structured as reported:
myEar.ear
|
+- META-INF
| |
| +- MANIFEST.MF
| +- application.xml
|
+- lib
| |
| +- aJar.jar
|
+- aWar.war
The MANIFEST.MF is autogenerated and blank, in the application.xml there is only the warfile entry.
When i deploy it in the jBoss Management Console the web-service contained by the war is not displayed. If i put the war directly it's displayed instead.
Have you any advice in this issue?
Thanks,
Dario
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回应评论。以下是常见的 application.xml 结构:
如果您没有 EJB - 只需删除第一个模块节点。
In response to comment. Here is common application.xml structure:
If you have no EJB - just remove the first module node.