1

Maven:部署时 Primefaces 库的奇怪 ClassNotFoundException

大家好!

上面的链接主要描述了我的问题,但由于它没有解决,我对此有点坚持。所以问题是在我部署应用程序时出现的大量警告消息。我正在使用Glassfish 3.1.2Maven 2.2.1Primefaces 3.4。就像在提到的帖子中一样,应用程序的功能没有问题,所以除了我的神经之外,这不会影响任何事情:) 我认为这些消息完全没有必要,我真的很想摆脱它们。

下面是加载 primefaces 依赖项的pom.xml :

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.2</version>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>javax</groupId>
        <artifactId>javaee-api</artifactId>
        <version>6.0</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>hu.mps.invito</groupId>
        <artifactId>invito-ejbs</artifactId>
        <type>ejb</type>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>3.4</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.primefaces.extensions</groupId>
        <artifactId>primefaces-extensions</artifactId>
        <version>0.5.1</version>
    </dependency>
    <dependency>
        <groupId>org.primefaces.themes</groupId>
        <artifactId>ui-lightness</artifactId>
        <version>1.0.4</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
        <version>3.1</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.3.2</version>
    </dependency>
    <dependency>
        <groupId>commons-fileupload</groupId>
        <artifactId>commons-fileupload</artifactId>
        <version>1.2.1</version>
    </dependency>
</dependencies>

作为一种解决方法,我尝试在 glassfish 管理控制台中为任何 jsf 组件设置日志级别,但没有成功。

非常感谢您!

4

1 回答 1

1

好的,我已经找到了这个问题的解决方案(或解决方法)。您必须将 Glassfish 中的javax.enterprise.system.container.web记录器设置为 SEVERE 级别,这样不会出现警告。

于 2013-05-15T07:15:10.380 回答