English 中文(简体)
GlassFish 扩展普通类装载器使用的 JARs
原标题:GlassFish extending JARs used by common classloader

我将几个应用程序从 JBoss 4 迁移到 GlassFish 3.1.x。 每一个应用程序都使用相同的 API, 提供每个应用程序所使用的共同分类和界面。 请将其称为 < code> CoreAPI.jar 。

CoreAPI.jar 被放入 GlassFish 的 目录,并由普通类装载器装入。

现在让我们来说明,每个应用程序都从核心API (Version ) 中延伸一个类(不是抽象的) :

public class Version {
    public String getVersion() { return null; }
}

getVersion () 方法在几个地方的 API 内部调用,使用 API 的每个应用程序都负责扩展该类并提供类似版本:

public class MyAppVersion extends Version {
    private static final String VERSION = "1.0";

    @Override
    public String getVersion() { return VERSION; }
}

当我在GlassFish, 被捆绑在战争或EAR中部署应用程序时,每当API调用父类getVersion () 时, 我就会得到一个 java.lang.NullPointerException - 它似乎找不到子类 。

如果 CoreAPI.jar 与 WAR捆绑, 从 目录中删除, 则该子类会是正确的, 但我无法这样做, 因为许多应用程序要求它作为共享库 。

我能让一个共享图书馆 在部署的应用程序里看到一个子类吗?

谢谢!

<强度 > 澄清: 我无法更改核心API

最佳回答

Is there a way I can make a shared-library see a sub-class within a deployed application?

否。 申请级装载器是普通级装载器的后代,而类装载器只能见其父母,而不能见其家属。

当普通类试图在实际上属于共同库的代码中做类似 Classs.forName (“com.app. detailClass”) 之类的事情时,通常会发现这一点。

问题回答

为了在所有应用程序之间共享库, 您应该使用 < code>$GLASSFISH_ HOME/ glassfish/ lib 文件夹。 当您通过更新工具安装 GlassFish 的附加内容时, 您甚至可以注意到它会将第三方罐子复制到此文件夹, 以便所有应用程序都能使用 。

要共享您 Mais 将它放在 $GLASSFISISH_HOME/ 玻璃鱼/ 域/ 您的域/ lib < / code> 文件夹中的所有应用程序, 请和您一样将其放在 < code>$GLASSFISH_ HOME/ glassfish/ domains/ your- domain/ lib < / code> 文件夹中 。

为了测试你所描述的 我创造了两个马文项目:

  • A java project called version (the mock of your CoreAPI)
  • A web project called web-version (the guy that will extend the CoreAPI)

Java项目包含您非抽象的核心API类内容:

package com.acme.version;

public class Version
{
    public String getVersion() { return null; }
}

在网络版本工程中,我为 version-1.0.jar 添加了范围依赖性,以便编译它,但一旦它出现在Glassfish/lib文件夹中,它就不会被添加到项目中。

然后 Web 版本工程有我用于测试的 < code> Version 类的扩展版本 :

package com.acme.web.controller;

import com.acme.version.Version;

public class ExtendedVersion extends Version
{
    private static final String VERSION = "1.0";

    @Override
    public String getVersion ()
    {
        return VERSION;
    }

    @Override
    public String toString()
    {
        return getVersion();
    }
}

然后我做了这个:

  • 创建了版本工程,并将所产生的罐子复制到上述$GLASSFISH_HOME/玻璃鱼/lib 文件夹。

  • 创建了包含 ExpendiveVersion 实例的控制器,并安装了应用程序。 它在网页中输出了 1.0

我能让一个共享图书馆 在部署的应用程序里看到一个子类吗?

有点奇怪,因为共享图书馆正在被装入。 似乎出于某种原因你的子类不是。 (日志中还有其他相关的例外吗? )

我认为你所描述的一点, 这个问题甚至可能与你与JBoss x GlassFish过渡的其他依赖关系有关, 而不是与你对于子分类或分类加载的方法有关。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...