识别
我已经将primefaces6.0.jar
添加到我的项目build path
中。我还使用了taglib
,如
<html 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" xml:lang="en" lang="en"
xmlns:p="http://primefaces.org/ui">
和在我的xhtml代码中,当我写<p:spinner />
时,它不被myEclipse
确保您已经启用了JSF facet(在MyEclipse Explorer中右键单击项目,选择MyEclipse-> project Facets->Install Java Server Faces facet)。如果您想从MyEclipse部署应用程序,还要确保jar也被添加到部署程序集(通常,建议添加到部署程序集而不是类路径—它会自动添加到类路径)。