以下は私が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>
どんな助けでも大歓迎です。