外部jar可以在Maven Web应用程序中找到,但在部署时找不到



我最近通过Netbeans 7.3使用GlassFish 3.1.2创建了一个Maven Web应用程序。在这里,我使用了一个外部jar,所以我将它添加到pom.xml:

<dependencies>
        ...
        <dependency>
            <groupId>be-fedict-eid-trust-service-client</groupId>
            <artifactId>eid-trust-service-client</artifactId>
            <version>1.0.1.RC5</version>
        </dependency>
        ...
</dependencies>

它正确显示,我可以在Bean中引用它。但是当我部署应用程序时,我得到一个错误,jar中的类(我之前提到的没有问题)找不到。

java.lang.NoClassDefFoundError: be/fedict/trust/xkms2/XKMSServiceFactory

由于我不熟悉Maven,我不知道如何以及在哪里可以解决这个问题。查看生成的WAR文件,jar在那里是正确的。我将addClasspath设置为true,因此它位于Manifest的Classpath中,但这似乎没有帮助。

我的库在WEB-INF/lib,我的Bean在WEB-INF/classes。

对于这个问题可能是什么有什么想法或一般的方向吗?我发现了这个主题:带有Maven依赖的Spring Web应用程序-在部署期间没有找到类但我不知道我怎么能让它为我工作(假设他找到了解决方案)。

提前感谢!

My full pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>ISB</groupId>
    <artifactId>eID</artifactId>
    <version>1.0</version>
    <packaging>war</packaging>
    <name>eID</name>
    <repositories>
        <repository>
            <id>e-contract</id>
            <url>https://www.e-contract.be/maven2</url>
        </repository>
    </repositories>
    <properties>
        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-web-api</artifactId>
            <version>6.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>be-fedict-eid-applet</groupId>
            <artifactId>eid-applet-shared</artifactId>
            <version>1.1.0.RC2</version>
        </dependency>
        <dependency>
            <groupId>be.fedict.eid-applet</groupId>
            <artifactId>eid-applet-service</artifactId>
            <version>1.1.0.RC2</version>
        </dependency>
        <dependency>
            <groupId>be-fedict-eid-applet</groupId>
            <artifactId>eid-applet-service-spi</artifactId>
            <version>1.1.0.RC2</version>
        </dependency>
        <dependency>
            <groupId>be-fedict-eid-applet</groupId>
            <artifactId>eid-applet-package</artifactId>
            <version>1.1.0.RC2</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>be-fedict-eid-trust-service-client</groupId>
            <artifactId>eid-trust-service-client</artifactId>
            <version>1.0.1.RC5</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <compilerArguments>
                        <endorseddirs>${endorsed.dir}</endorseddirs>
                    </compilerArguments>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <id>copy</id>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>be-fedict-eid-applet</groupId>
                                    <artifactId>eid-applet-package</artifactId>
                                    <version>1.1.0.RC2</version>
                                    <type>jar</type>
                                    <outputDirectory>${project.build.directory}/${project.artifactID}</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

我不确定这和你的POM有什么关系。我怀疑这是目标容器(Glassfish)中使用的库——一个类路径问题。每个容器加载类的方式略有不同。这个问题& &;答案可能会给你一些启发。如果这个工件有两个不同的版本,一个在容器中,一个在您的POM中,那么您必须告诉容器要使用哪个。WebLogic使用WebLogic .xml文件。

相关内容

  • 没有找到相关文章

最新更新