2013-10-13 93 views
0

我是Richfaces框架中的新成員。在這個時候,我試圖把這個添加到我的工程項目中。不幸的是,在使用JSF 2.0運行這個框架時存在很多問題。我試圖下載很多maven原型,但其中大多數都不起作用。你能指點我可以找到類似JSF 2.0 + Richfaces 4空白和配置項目的地方嗎?它也可以是maven。我今天花了整整一天的時間讓它運行,但這段時間對我來說事情非常複雜。JSF 2.0和Richfaces配置

回答

0

你不需要太多。您可能需要依賴關係的存儲空間,構建war文件的插件,JSF版本(我假設您的容器提供JSF api +實現,因此provided)和RichFaces API +實現。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>com.your.package</groupId> 
    <artifactId>your.project</artifactId> 
    <version>0.0.1-SNAPSHOT</version> 
    <packaging>war</packaging> 

    <properties> 
     <project.build.version>0.0.1-SNAPSHOT</project.build.version> 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
    </properties> 

    <repositories> 

     <repository> 
      <snapshots> 
       <enabled>false</enabled> 
      </snapshots> 
      <id>jboss</id> 
      <name>JBoss repository</name> 
      <!-- <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> --> 
      <url>http://repo1.maven.org/maven2/</url> 
     </repository> 
    </repositories> 

    <dependency> 
     <groupId>com.sun.faces</groupId> 
     <artifactId>jsf-api</artifactId> 
     <version>2.1.22</version> 
     <scope>provided</scope> 
    </dependency> 

    <dependency> 
     <groupId>com.sun.faces</groupId> 
     <artifactId>jsf-impl</artifactId> 
     <version>2.1.22</version> 
     <scope>provided</scope> 
    </dependency> 

    <dependency> 
     <groupId>org.richfaces.core</groupId> 
     <artifactId>richfaces-core-api</artifactId> 
     <version>4.3.3.Final</version> 
    </dependency> 

    <dependency> 
     <groupId>org.richfaces.core</groupId> 
     <artifactId>richfaces-core-impl</artifactId> 
     <version>4.3.3.Final</version> 
    </dependency> 

    <build> 
     <plugins> 
      <plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-war-plugin</artifactId> 
       <version>2.4</version> 
       <configuration> 
        <webXml>src\main\webapp\WEB-INF\web.xml</webXml> 
       </configuration> 
      </plugin> 
     </plugins> 
    </build> 
</project>