Hello, What would be the best aproach without hurting MVC framework in having one central "template.jsp" and inserting into it Struts actions, such as:
<table> <tr><td> <jsp:include="/Menu.do"> </td><td> <jsp:include="/News.do"> </td></tr> </table> The usual <jsp:include apparently only work with Servlets and/or others JSP files, not with Struts actions.