我目前正在开发一个JSF项目,我决定使用Primefaces。但是当我切换我的Work-Enviroment时,浏览器不断抛出多个“ReferenceError:PrimeFaces未定义”。
这是我目前正在开发的add.xhtml页面的开头(我希望它已经足够了):
<!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:r="http://primefaces.org/ui"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
>
<h:head>
<h:outputStylesheet library="css" name="search.css" />
<h:outputStylesheet library="css" name="template.css" />
<h:outputStylesheet library="css" name="add.css" />
</h:head>
<ui:composition template="/WEB-INF/templates/template.xhtml">
<ui:define name="content">
<h:form id="form">
<p>
<r:outputLabel styleclass="label" value="Datum:"></r:outputLabel>
</p>
<p>
<r:calendar id="in_datum" value="#{addController.date}"> </r:calendar>
</p>