我試圖將項目從Richfaces 4.3.6遷移到5.0.0.Alpha3。rich:在Richfaces中找不到5.0.0.Alpha3
我刪除了舊版本的RichFaces的所有依存關係,在我的項目pom.xml
添加新的依賴:
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
<version>5.0.0.Alpha3</version>
</dependency>
然後,rich:component
在我xhtml
網頁不能正常工作。它在Intellij Idea
高亮顯示,當我嘗試打開xhtml
頁面我得到這個錯誤:當我嘗試4.5.0
版本的RichFaces的rich:component
正常工作
javax.servlet.ServletException: Function 'rich:component' not found.
。它依賴類似於:
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
<version>4.5.0.Beta2</version>
</dependency>
我使用Wildfly 8.1
的Mojarra 2.2.6
版本。
什麼是問題?任何人都可以幫忙嗎?