无法使用glassfish3.1.2,primefaces 3.4,maven加载类警告消息

时间:2013-05-10 13:30:49

标签: maven logging primefaces glassfish

Maven : Strange ClassNotFoundException of Primefaces library on deploy

大家好!

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

下面是 pom.xml ,其中加载了primefaces依赖项:

<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组件设置日志级别,但没有运气。

非常感谢你!

1 个答案:

答案 0 :(得分:1)

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