I am new to JSF and PrimeFaces (and new to stackoverflow) and am having a configuration/deployment problem. I am using PrimeFaces 5.0, Tomcat 7.0.55, and JSF 2.2. The JSF tags can be resolved and work, but the PrimeFaces tags are not resolved and give this error.
Here is the web page:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://primefaces.org/ui" prefix="p" %>
<f:loadBundle basename="resources/messages" var="msg"/>
<html>
<head>
<title>enter your name page</title>
</head>
<body>
<f:view>
<h1>
<h:outputText value="#{msg.inputname_header}"/>
</h1>
<h:form id="helloForm">
<h:outputText value="#{msg.prompt}"/>
<h:inputText value="#{personBean.personName}" />
<h:commandButton action="login" value="#{msg.button_text}" />
<p:spinner />
</h:form>
</f:view>
</body>
</html>
The error message is: org.apache.jasper.JasperException: The absolute uri: http://primefaces.org/ui cannot be resolved in either web.xml or the jar files deployed with this application
Your help would be appreciated