struts1     VS     struts2

struts1     VS     struts2

Struts2中有没有像struts1中DispatchAction 使用一样方便的机制
有,而且Struts2的实现更优雅

Java code
 
<action name="login_*" method="{1}" class="LoginAction"> <result name="success" type="freemarker"> /admin/index.jsp </result> <result name="input">/login.jsp</result> </action>
 

STRUTS2里的更方便