Struts1.2, Struts2, Spring2的区别

Struts1.2、Struts2和Spring2的本质区别主要在于Action类、Form表单、JSP页面显示三个方面的用法:

框架 Action Form JSP
Struts1.2 DispatchAction分发 在Form中验证validate() <bean:message key="">
Struts2.0 ActionSupport 在Action中验证validate() <s:text name=""/>
Spring2.0 MutiActionController 在Validator中验证 <spring:message code=""/>

源自《Java高手真经——Java Web核心框架》。

你可能感兴趣的:(java,spring,jsp,框架,bean)