Maven : デプロイ時の Primefaces ライブラリの奇妙な ClassNotFoundException
皆さんこんにちは!
上記のリンクは主に私の問題を説明していますが、解決されていないため、これに少しこだわっています。問題は、アプリケーションのデプロイ時に表示される膨大な数の警告メッセージです。私はGlassfish 3.1.2、Maven 2.2.1、およびPrimefaces 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 コンポーネントのログ レベルを設定しようとしましたが、うまくいきませんでした。
事前にどうもありがとうございました!