在 Tomcat 中的 war 文件之间共享 Java 类?

发布于 2024-11-26 11:17:39 字数 342 浏览 1 评论 0原文

我使用 Tomcat 7 作为 servlet 容器,并且有两个 war 文件(Eclipse 中的两个项目)。问题是,我想在两个部署的 war 文件之间共享类。 但据我所知,Tomcat / Servlet 规范是不可能的。两个部署的 Web 应用程序似乎是相互隔离的。

所以我读到,我是一个新手,从 JBoss 作为应用程序服务器,我可以在其中部署ear文件(这样我可以将多个war文件放入其中),然后我可以在它们之间共享类?

所以我的问题是:你同意我的说法吗?JBoss 可以做到这一点吗?我是否必须进行更改,或者我可以轻松地将两者放入 Ear 文件中并使用 JBoss 部署它并且它会起作用吗?

最好的问候,蒂姆。

I am using Tomcat 7 as a servlet container and I have two war files (two projects in Eclipse). The problem is, that I want to share classes between both deployed war files.
But this is not possible with Tomcat / Servlet specifications as far as I know. Both deployed web applications seems to be are isolated from each other.

So I read, I am a newbie, from JBoss as an application server in which I can deploy ear files (so I can put multiple war files into it) and then I can share classes between them?

So my question: Do you agree with my statement, is it possible to do this with JBoss? And do I have to make changes or can I put easily both in an ear file and deploy it with JBoss and it will work?

Best Regards, Tim.

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

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

发布评论

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

评论(1

紫瑟鸿黎 2024-12-03 11:17:39

有 2 个简单的选择。两者都要求您在单独的项目 (JAR) 中定义共享类,我们将其称为SHARED。现在,当涉及到部署时,您有 2 个选择:

  1. SHARED.jar 复制到 Tomcat 的 lib 文件夹,然后就完成了。
  2. 在您的 WebApp 中引用 SHARED.jar,当从 eclipse 导出 WAR 时,该工具将创建一个 JAR,将其放置在 WebApp 的 WEB-INF/lib 文件夹中,并创建 WAR(参见屏幕截图)。

如果您选择选项 #1,重要的是要了解相同的类在 WebApp 类加载器(Tomcat 系统类加载器)之间共享,因此只有当您想在不同的 WebApp 之间共享状态(例如单例)时,您才需要使用此选项。

顺便说一句:屏幕截图是使用 Eclipse 3.6 + WTP 制作的...

在此处输入图像描述

There are 2 easy options. Both require you to define the shared classes in a separate project (JAR), let's call it SHARED. Now, when it comes to deployment you have 2 options:

  1. copy SHARED.jar to Tomcat's lib folder and you're done.
  2. reference SHARED.jar in your WebApp, when exporting your WAR from eclipse the tooling will create a JAR, place it in WebApp's WEB-INF/lib folder, and create the WAR (see screenshot).

If you go with option #1 it is important to understand that the same classes are shared between the WebApp classloaders (Tomcat system classloader), so you'd go with this option only if you want to share state between different WebApps (e.g. Singletons).

BTW: The screenshot is made using Eclipse 3.6 + WTP...

enter image description here

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