0

以下是我在 JSP 页面中的内容

example.jsp

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

现在我想将此页面包含在我的 jsf 页面之一中。我怎么能那样做?

我在下面尝试过,但是我收到错误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

我也使用了omnifaces。

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

成功了....

于 2012-07-13T13:58:14.657 回答