Poner un header y un foote a cada jsp

2057 vistas

Si trabajamos con jsp 2.0...

en el web.xml



xml
  1. <jsp-config>
  2.   <jsp-property-group>
  3.     <url-pattern>*.jsp</url-pattern>
  4.     <include-prelude>/includes/header.jsp</include-prelude>
  5.     <include-coda>/includes/footer.jsp</include-coda>
  6.   </jsp-property-group>
  7. </jsp-config>