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 はどのように使用できますか?