문제

This question already has an answer here:

I am using Eclipse to work with PrimeFaces like this:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
 xmlns:ui="http://java.sun.com/jsf/facelets"
 xmlns:h="http://java.sun.com/jsf/html"
 xmlns:f="http://java.sun.com/jsf/core"
 xmlns:p="http://primefaces.prime.com.tr/ui" 
 template="/template/ui.xhtml">

I saw Bozho question and answer.

So it works for me only for h and f tags and not for p (primefaces) tag! How can it autocomplete primefaces tag?

도움이 되었습니까?

해결책

다른 팁

I had the same problem and none of the solutions posted solved (i already had primefaces jar in my classpath).

I use a eclipse project format, and in the .settings folder, the file "org.eclipse.wst.common.project.facet.core.xml" had this properties:

<installed facet="jst.jsf" version="1.2"/>
<installed facet="jst.web" version="2.5"/>

I changed to:

<installed facet="jst.jsf" version="2.0"/>
<installed facet="jst.web" version="3.0"/>

And it worked. Sure it was a wrong configuration, but can be useful to someone. Ps: these properties can be changed in project facets on eclipse project properties, but in some cases it´s better change directly in the file.

By default we don't get automcomplete for PrimeFaces tag in Eclipse. To enable AutoComplete, Go to Window-->Preferences-->General-->ContentTypes Select JSP and add .xhtml as file association.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top