java - jsp include tag vs struts include action? -
struts include action include context-relative uri specified parameter attribute. , jsp include tag that. so,whats difference between normal jsp include tag i.e , struts include action?
right the documentation:
this can used integrate struts other business logic components implemented servlets (or jsp pages), still take advantage of struts controller servlet's functionality (such processing of form beans)
struts front controller, handles form bean population, locale detection, exception handling, form validation, authorization, etc. might useful before including uri (or after, exception handling).
but if start struts application scratch, shouldn't have use it. it's useful when have servlet , want include inside struts application without rewriting using struts.
Comments
Post a Comment