Struts 1.2.1下载和最新的改变!

经过了一年多的等待,Struts1.2.1Beta 终于可以下载了.
看来正式版的Struts 1.2.1不久就会推出.对于Struts的
拥护者来说现在就可以去下载beta版,来体验一下.
反正我已经在下了:-).
下载地址: http://cvs.apache.org/dist/struts/v1.2.1/
详细的说明: http://struts.apache.org/userGuide/release-notes.html


新变化(粗略):

   1.Validator的增强
   2.Struts-Chain
   3.新的MappingDispatchAction
   4.Session-scoped ActionMessages
   5.Tiles EL
   6.Wildcard Mappings (类似于在action中使用通配符)
  
    path="/edit*"
    type="org.apache.struts.webapp.example.Edit{1}Action"
    name="{1}Form"
    scope="request"
    validate="false">
            name="failure"
        path="/mainMenu.jsp"/>
            name="success"
        path="/{1}.jsp"/>

    7.Session-scoped ActionMessages(ActionErrors应该被彻底Deprecated了)

...........

你可能感兴趣的:(J2SE,Struts)