我正在尝试使用 PrimeFaces 3.2。我正在使用 Eclipse Indigo SR2。我正在使用 PrimeFaces 标签创建一个 JSP 页面。该标准<h:commandButton>
有效,但<p:commandButton>
无效。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns:p="http://primefaces.org/ui">
<head>
</head>
<body>
<f:view>
<h:form>
<h:commandButton value="Click"></h:commandButton>
<p:commandButton value="shfgldjfkl"></p:commandButton>
</h:form>
</f:view>
</body>
</html>
我的输出是这样的:
当我在 Indigo Service Release 2 中获取 JSF XHTML 页面时,我的代码没有运行,我的页面是空白的。
如何使用 PrimeFaces 3.2?