5

デプロイ中のエラー: アプリのロード中に例外が発生しました: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: java.lang. ClassNotFoundException: org.apache.commons.lang3.StringEscapeUtils モジュールはデプロイされていません。

これは私のコードです:

<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:ui="http://java.sun.com/jsf/facelets"
  xmlns:pe="http://primefaces.org/ui/extensions">
<f:view contentType="text/html" locale="en">
<pe:head title="PrimeFaces Extensions - ShowCase">
    <f:facet name="first">
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <meta http-equiv="pragma" content="no-cache"/>
        <meta http-equiv="cache-control" content="no-cache"/>
        <meta http-equiv="expires" content="0"/>
    </f:facet>
</pe:head>
<h:body>
    <pe:layout>
        <pe:layoutPane position="north">
            <ui:insert name="header"/>
        </pe:layoutPane>
        <h:form>
            <ui:insert name="center"/>
            <pe:layoutPane position="south">
                <ui:insert name="footer"/>
            </pe:layoutPane>
        </h:form>
    </pe:layout>
</h:body>

4

2 に答える 2

8

「Apache Commons Lang3 」をプロジェクトに追加する必要があります

クラスパスにない場合は、プロジェクトに Apache Commons Lang3 を追加します。

ライブラリはhttp://commons.apache.org/proper/commons-lang/からダウンロードできます。

于 2013-05-15T19:12:50.703 に答える
2

Primefaces Extensions Getting Startedに書かれている情報によると

PF 拡張機能の依存関係:

幸運を。

于 2015-04-29T12:54:49.000 に答える