我正在尝试使用PrimeFaces Mobile制作我的第一页,但标签不会呈现。
我的xhtml文件如下所示:
<?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:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:pm="http://primefaces.org/mobile">
<f:view>
<f:loadBundle basename="test.Labels"
var="labels" />
<h:head>
<title>#{labels.PageTitle}</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script type="text/javascript" src="js/global.js"></script>
</h:head>
<h:body>
<pm:page title="Hello World">
<pm:view id="main">
<pm:header title="Header" />
<pm:content>Content</pm:content>
<pm:buttonGroup orientation="horizontal">
<p:commandButton value="Yes" />
<p:commandButton value="No" />
</pm:buttonGroup>
</pm:view>
</pm:page>
</h:body>
</f:view>
</html>
我正在使用:
我也尝试添加:
<application>
<default-render-kit-id>PRIMEFACES_MOBILE</default-render-kit-id>
</application>
但发生了异常: 找不到“PRIMEFACES_MOBILE”的RenderKit。 如果没有这个,PrimeFaces标签就不会被渲染。
谢谢,非常感谢任何帮助。
答案 0 :(得分:2)
问题现在解决了。
PrimeFaces jar(在我的情况下为primefaces-3.3.jar)必须在运行时/ WEB-INF / lib文件夹中可用
我的大错。