は5.3

2016-04-27 5 views
0

2.1.20にバージョンJSFエラーが発生し、プロジェクトはプロジェクトのJSF 2.1.28バージョンではは5.3

Abr 26, 2016 5:29:21 PM org.apache.catalina.loader.WebappClassLoaderBase checkThreadLocalMapForLeaks GRAVE: The web application [] created a ThreadLocal with key of type [javax.faces.context.FacesContext$1] (value [[email protected]]) and a value of type [org.apache.myfaces.context.servlet.StartupFacesContextImpl] (value [[email protected]09a]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak

まで上昇し、JSFを使用していないPrimeFacesを使用しますラピス輸出がエラーを発生します。

java.lang.UnsupportedOperationException

フォンテ:検証した後https://github.com/rdicroce/jsfexporter

答えて

0

、私は私のpom.xmlファイルに施設「のAPIとIMPL」MyFacesのワットを使用していたことが確認しましたiの "apiとimpl" JSFの依存関係を取り除いた後、JSFが競合しています。

MYのpom.xml ...

<dependency> 
     <groupId>org.apache.myfaces.core</groupId> 
     <artifactId>myfaces-api</artifactId> 
     <version>${myfaces.version}</version> 
</dependency> 

<dependency> 
    <groupId>org.apache.myfaces.core</groupId> 
    <artifactId>myfaces-impl</artifactId> 
    <version>${myfaces.version}</version> 
</dependency> 

コメントまたは削除...

<dependency> 
    <groupId>com.sun.faces</groupId> 
    <artifactId>jsf-api</artifactId> 
    <version>2.1.28</version> 
</dependency> 

<dependency> 
    <groupId>com.sun.faces</groupId> 
    <artifactId>jsf-impl</artifactId> 
    <version>2.1.28</version> 
</dependency>