the JSF page must be a subview:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <f:subview id="myJSFSubview"> ..... </f:subview>
The tricky part is how to include it in the JSP, in a way that is independent of the main JSP. But you just need to include like this:
<% pageContext.include("myJSFpage.jsf"); %>
Cheers,
Ujjwal Soni
No comments:
Post a Comment