以下是我在 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>
任何帮助表示赞赏。