How to implement templating in JSF+JSP without Facelets?
I have a left menu and a <jsp:include>
for the center content in my layout page, both are contained within a <form>
in the layout.jsp
. When the <h:commandLink>
in the left menu is clicked, then the page is submited and the action is called to set the coresponding managedbean property used within the <jsp:include>
, but this doesn't work as I run into errors like my scope getting resetted.
Any help and thoughts on this is highly appreciated.