0

以下は私がJSPページに持っているものです

example.jsp

<html>
    <body>
        //report using mysql connection
    </body>
</html>

ここで、このページをjsfページの1つに含めたいと思います。どうすればそれができますか?

以下で試してみましたが、次のようにエラーが発生しますjavax.faces.view.facelets.FaceletException: Error Parsing /detailedReports.jsp: Error Traced[line: 1] The markup in the document preceding the root element must be well-formed.

私が試したコードは

<h:form>
    <ui:include src="detailedReports.jsp" />   
</h:form>

どんな助けでも大歓迎です。

4

1 に答える 1

2

私は同じためにオムニフェイスを使用しました。

<o:resourceInclude path="detailedReports.jsp" />

トリックをしました....

于 2012-07-13T13:58:14.657 に答える