1

私はprimefaces 3.2を使用しています。プロジェクトはmavenでビルドされています

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">

....  

</html>

JSPファイルでは、コンポーネントパラメータの提案を見ることができました.facerestでも同じようにしたいです

前もって感謝します

4

2 に答える 2

2

Eclipse for Java EE を使用している場合は、これが必要です。

あなたのプロジェクトにはおそらくいくつかのファセット (Java Server Faces) が欠けています。

これはあなたを助けるかもしれません: http://help.eclipse.org/indigo/topic/org.eclipse.jst.jsf.doc.user/html/tasks/add_jsf_facet.html

于 2013-02-19T20:12:03.123 に答える
1

pom.xmlに追加しました

<build>
   <plugins>            
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <version>2.7</version> 
            <configuration>                 
               <additionalProjectFacets>
                  <jst.jsf>2.0</jst.jsf>
               </additionalProjectFacets>
            </configuration>
     </plugin>
  </plugins>
</build>

そしてそれは動作します Eclipseプロジェクトに自動的に顔を追加しました

于 2013-02-21T11:25:52.173 に答える