如何在不停止服务器的情况下消除JBoss中爆炸的战争?

发布于 2024-10-06 18:25:42 字数 200 浏览 5 评论 0原文

我可以删除除 lib 文件夹之外的所有内容(JBoss 说应用程序已取消部署,但他不会释放 jars)。

我绑定了 jboss-maven-plugin 和硬取消部署,但是它说文件(文档说它也支持目录)已取消部署,但它没有取消部署应用程序。

我使用的是jboss-4.2.1.GA。我打赌它可以通过 jmx-console 取消部署,但我不知道如何进行。

I can delete everything except lib folder(JBoss says application is undeployed, but he wont release the jars).

I tied jboss-maven-plugin and hard-undeploy, however it says that file(doc says it also support dirs) is undeployed, however it does not undeploy application.

Im using jboss-4.2.1.GA. I bet it can be undeployed through jmx-console, but i weren't able to find out how.

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

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

发布评论

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

评论(3

依 靠 2024-10-13 18:25:42

Seam执行取消部署展开的应用程序的方式

<target name="unexplode" description="Undeploy the exploded archive">
        <delete failonerror="no">
            <fileset dir="${ear.deploy.dir}">
                <exclude name="**/*.jar"/>
            </fileset>
        </delete>
        <delete file="${deploy.dir}/${project.name}-ds.xml" failonerror="no"/>
        <delete dir="${ear.deploy.dir}" failonerror="no"/>
</target>

通常效果很好,有时我需要重新启动(通过触摸部署者观察到的文件)

<target name="restart-exploded">
    <antcall target="explode"/>
    <touch file="${ear.deploy.dir}/META-INF/application.xml"/>
</target>

The way Seam performs an undeploy an exploded application is

<target name="unexplode" description="Undeploy the exploded archive">
        <delete failonerror="no">
            <fileset dir="${ear.deploy.dir}">
                <exclude name="**/*.jar"/>
            </fileset>
        </delete>
        <delete file="${deploy.dir}/${project.name}-ds.xml" failonerror="no"/>
        <delete dir="${ear.deploy.dir}" failonerror="no"/>
</target>

this usually works good, sometimes I need to restart (by touching a file which is observerd by the deployer)

<target name="restart-exploded">
    <antcall target="explode"/>
    <touch file="${ear.deploy.dir}/META-INF/application.xml"/>
</target>
红ご颜醉 2024-10-13 18:25:42

在 jboss 安装下的 work 和 tmp 文件夹下手动删除应用程序。先停止 JBoss,后启动。这会有帮助。

Remove your application manually under from work and tmp folders under your jboss installation. Stop JBoss before and start it after. This will help.

一萌ing 2024-10-13 18:25:42

我认为发生的情况是:

  1. WAR 文件被部署并分解。
  2. 当您的应用程序启动时,其类加载器会打开 JAR 文件并锁定它们以防止它们被删除或覆盖。
  3. 然后,您停止并取消部署该应用程序。
  4. 不幸的是,类加载器仍然存在,并且它仍然持有的锁阻止删除 JAR 文件。

类加载器可能仍然存在,原因有两个:

  • 它可能无法访问,但 GC 尚未运行。
  • 它可能已经泄漏,所以即使 GC 运行它也不会被删除。

唯一可靠的解决方案是关闭并重新启动 JBoss。

I think what is happens is:

  1. The WAR file is deployed and exploded.
  2. When your application starts, its classloader opens the JAR files and locks them to prevent them from being removed or overwritten.
  3. You then stop and undeploy the application.
  4. Unfortunately the classloader still exists, and the locks it still holds prevent removal of the JAR files.

The classloader could still exist for two reasons:

  • It could be unreachable, but the GC hasn't run.
  • It could have been leaked, so it won't removed even if the GC does run.

The only sure solution is to shutdown and restart JBoss.

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