JSF 2.0 Webプロジェクトにプライムフェイスを組み込もうとしています。JSF 2.0とFaceletsを持つプライム
facelet 1.xから2.0に最近更新されました。私のライブラリフォルダにprimefaces jarが追加されました。テンプレートが構造化されている方法で、プライムフェイスと矛盾している場合を除いて、すべてが問題ありません。
私のtemplate.xhtmlは次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title><ui:insert name="title">MILO</ui:insert></title>
//Css
//js
</h:head>
<h:body class="milo">
<h:form styleClass="miloForm" enctype="multipart/form-data">
<div id="container">
<ui:insert name="header">
<ui:include src="/WEB-INF/templates/header.xhtml"/>
</ui:insert>
<ui:insert name="content">
<!-- include your content file or uncomment the include below and create content.xhtml in this directory -->
</ui:insert>
<ui:insert name="footer">
<ui:include src="/WEB-INF/templates/footer.xhtml"/>
</ui:insert> </div>
</h:form>
</h:body>
そして、私のいるindex.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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<ui:composition template="/WEB-INF/templates/base.xhtml">
<ui:define name="content">
<p:editor/>
</ui:define>
これが完了すると、p:エディタは表示されません。なぜどんなアイデア?コンソールは警告/エラーを表示しません。あなたのtemplate.xhtml
で
EDIT >>>見つかりJSエラー
:あなたにもPrimeFacesコンポーネントを使用していないページをカバーするには、明示的
<h:head>
に次の行を追加することによって、すべてのページのためのPrimeFaces-同梱のjQueryをロードすることができます。 < head>を< h:head>と< body>から< h: body>に変更しても、エラーはなくなりますが、p:editorは表示されなくなります。なぜあなたはそれがだと思いますか? – Myyあなたのコードにはあまりにも多くのノイズが含まれています(あなたはSSCCEを作成して提供する方法を学ぶべきです)が、マスターテンプレートはすでに ''を持っていますが、テンプレートクライアントに '' 。フォームのネストはHTMLでは無効です。 –
BalusC
すみません。私はあなたのポイントを理解しています。 – Myy