我已经实现了以下向导:
<!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:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:c="http://java.sun.com/jstl/core">
<h:head>
<meta charset="utf-8" />
</h:head>
<h:body>
<h:form id="wizard" enctype="multipart/form-data">
<p:wizard id="wiz" widgetVar="wiz">
<p:tab id="productWizardBasicTab"
title="#{lang['product.TabBasicProduct']}">
<p:panel header="#{lang['product.header']}">
<h:panelGrid id="basic" columns="2" columnClasses="label, value"
styleClass="grid">
<h:outputText value="#{lang['product.productname']}" />
<p:inputText id="productName" required="true" label="" value="" />
<h:outputText value="#{lang['product.description']}" />
<p:inputText id="productDescription" required="true" label=""
value="" />
<h:outputText value="#{lang['product.tags']}" />
<p:inputText id="productTags" required="true" label="" value="" />
<h:outputText value="#{lang['product.price']}" />
<p:inputText id="productPrice" required="true" label="" value="" />
</h:panelGrid>
</p:panel>
</p:tab>
<p:tab id="productWizardImageTab"
title="#{lang['product.TabProductImages']}">
<p:panel header="#{lang['product.UploadImageHeader']}">
</p:panel>
</p:tab>
<p:tab id="productWizardSpecialTab"
title="#{lang['product.TabSpezialization']}">
</p:tab>
<p:tab id="productWizardTagTab"
title="#{lang['product.TabTags']}">
</p:tab>
<p:tab id="productWizardTagTab"
title="#{lang['product.ShareTab']}">
</p:tab>
</p:wizard>
</h:form>
</h:body>
</html>
我的问题是,这个向导在启动时tomcat 7.0 server
没有反应。我已经实现了 libPF 3.5
和 use jsf 2.2.0
。
我感谢向导的每一个提示!