Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tapestry Wiki" for change notification.
The following page has been changed by ErikVullings: http://wiki.apache.org/tapestry/TapestryFasttrackForStrutsProgrammers ------------------------------------------------------------------------------ = Architecture Comparison = + Struts is based on the HTTP model (or more accurately Sun's Servlet API). The core idea is using the Struts controller servlet and its configuration file (struts-config.xml) to examine URLs (or HTTP form posts), instantiate a java bean (subclass of ActionForm) and set its properties using the URL parameters (or HTTP form post), invoke data validation method defined within the ActionForm, and then pass it along to a java class (subclass of Action or LookupDispatchAction) defined within the Struts configuration file (struts-config.xml) and finally looks up and dispatch to a destination view, typically a jsp page. + + Tapestry takes a slightly different approach. + = Similarities = = Differences = --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
