成功部署并随后从 jboss 服务器取消部署 Seam 项目

发布于 2024-11-03 00:23:40 字数 184 浏览 0 评论 0原文

我正在使用 Eclipse Helios 3.6、JBoss Tools(最新版本)和 JBossAS 5.1。我有一个项目之前运行良好。由于某种原因,我重新启动了 JBoss,项目得到部署,但几乎立即被取消部署。它不断地这样做。这并不是我正在开发的项目第一次出现这样的情况。

据我所知,我的代码中没有错误,请有人告诉我如何解决这个问题。

I am using Eclipse Helios 3.6, JBoss Tools (the latest version) and JBossAS 5.1. I have a project that was working fine before. For some reason, I restarted my JBoss and the project gets deployed and almost immediately gets undeployed. It does this continuously. This is not the first time a project am working on is behaving like this.

From what I can see, there are no errors in my code, please could someone tell me how I can resolve this issue.

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

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

发布评论

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

评论(1

不离久伴 2024-11-10 00:23:40

当我遇到这个问题时,我注意到 eclipse 中以 *.spdia 结尾的文件导致了这个问题。

您可以手动删除它,也可以修改 Ant 脚本以不再部署它。

对于我的情况:

<copy todir="${war.deploy.dir}">
        <fileset dir="${war.dir}">
             <exclude name="**/*.spdia"/>
        </fileset>
    </copy>

When I had this problem I've noticed that a file from eclipse, ended with *.spdia was causing this issue.

You can manually delete it or you can modify your ant script to not deploy it again.

For my case:

<copy todir="${war.deploy.dir}">
        <fileset dir="${war.dir}">
             <exclude name="**/*.spdia"/>
        </fileset>
    </copy>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文