以下是我在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>
感谢任何帮助。
答案 0 :(得分:2)
我使用了omnifaces。
<o:resourceInclude path="detailedReports.jsp" />
做了伎俩......