<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆 - 3, 文章 - 152, 評論 - 17, 引用 - 0
    數據加載中……

    WebWork 2 : Comparison to Struts

    This page last changed on Jun 18, 2004 by plightbo.

    Feature Comparison

    Feature Struts WebWork 1.x WebWork 2.x
    Action classes Struts requires Action classes to extend an Abstract base class. This shows a common problem in Struts of programming to abstract classes instead of interfaces. Action classes must implement the webwork.Action Interface. There are other Interfaces which can be implemented for other services, such as storing error messages, getting localized texts, etc. The ActionSupport class implements many of these Interfaces and can act as a base class. WebWork is all written to Interfaces, which allows for plugging in your own implementations. An Action must implement the com.opensymphony.xwork.Action Interface, with a series of other Interfaces for other services, like in WebWork 1.x. WebWork2 has its own ActionSupport to implement these Interfaces.
    Threading Model Struts Actions must be thread-safe because there will only be one instance to handle all requests. This places restrictions on what can be done with Struts Actions as any resources held must be thread-safe or access to them must be synchronized. WebWork Actions are instantiated for each request, so there are no thread-safety issues. In practice, Servlet containers generate many throw-away objects per request, and one more Object does not prove to be a problem for performance or garbage collection. ditto
    Servlet Dependency Struts Actions have dependencies on Servlets because they get the ServletRequest and ServletResponse (not HttpServletRequest and HttpServletResponse, I've been told) when they are executed. This tie to Servlets (although not Http*) is a defacto tie to a Servlet container, which is an unneeded dependency. Servlets may be used outside a Web context, but it's not a good fit for JMS, for instance. WebWork Actions are not tied to the web or any container. WebWork actions CAN choose to access the request and response from the ActionContext, but it is not required and should be done only when ABSOLUTELY neccessary to avoid tieing code to the Web. ditto
    Testability Many strategies have sprung up around testing Struts applications, but the major hurdle is the fact that Struts Actions are so tightly tied to the web (receiving a Request and Response object). This often leads people to test Struts Actions inside a container, which is both slow and NOT UNIT TESTING. There is a Junit extension : Struts TestCase (http://strutstestcase.sourceforge.net/) WebWork actions can be tested by instantiating your action, setting the properties, and executing them ditto, but the emphasis on Inversion of Control makes testing even simpler, as you can just set a Mock implementation of your services into your Action for testing, instead of having to set up service registries or static singletons
    FormBeans Struts requires the use of FormBeans for every form, necessitating either a lot of extra classes or the use of DynaBeans, which are really just a workaround for the limitation of requiring FormBeans WebWork 1.x allows you to have all of your properties directly accessible on your Action as regular Javabeans properties, including rich Object types which can have their own properties which can be accessed from the web page. WebWork also allows the FormBean pattern, as discussed in "WW1:Populate Form Bean and access its value" WebWork 2 allows the same features as WebWork 1, but adds ModelDriven Actions, which allow you to have a rich Object type or domain object as your form bean, with its properties directly accessible to the web page, rather than accessing them as sub-properties of a property of the Action.
    Expression Language Struts 1.1 integrates with JSTL, so it uses the JSTL EL. This EL has basic object graph traversal, but relatively weak collection and indexed property support. WebWork 1.x has its own Expression language which is built for accessing the ValueStack. Collection and indexed property support are basic but good. WebWork can also be made to work directly with JSTL using the Filter described in WW1:Using JSTL seamlessly with WebWork WebWork 2 uses XW:Ognl which is a VERY powerful expression language, with additions for accessing the value stack. Ognl supports very powerful collection and indexed property support. Ognl also supports powerful features like projections (calling the same method on each member of a collection and building a new collection of the results), selections (filtering a collection with a selector expression to return a subset), list construction, and lambda expressions (simple functions which can be reused). Ognl also allows access to static methods, static fields, and constructors of classes. WebWork2 may also use JSTL as mentioned in WW1:Using JSTL seamlessly with WebWork
    Binding values into views Struts uses the standard JSP mechanism for binding objects into the page context for access, which tightly couples your view to the form beans being rendered WebWork sets up a ValueStack which the WebWork taglibs access to dynamically find values very flexibly without tightly coupling your view to the types it is rendering. This allows you to reuse views across a range of types which have the same properties. ditto
    Type Conversion Struts FormBeans properties are usually all Strings. Struts uses Commons-Beanutils for type conversion. Converters are per-class, and not configurable per instance. Getting a meaningful type conversion error out and displaying it to the user can be difficult. WebWork 1.x uses PropertyEditors for type conversion. PropertyEditors are per type and not settable per Action, but field error messages are added to the field error map in the Action to be automatically displayed to the user with the field. WebWork2 uses Ognl for type conversion with added converters provided for all basic types. Type converters default to these converters, but type conversion can be specified per field per class. Type conversion errors also have a default error message but can be set per field per class using the localization mechanism in WW2 and will be set into the field error messages of the Action.
    Modular Before & After Processing Class hierarchies of base Actions must be built up to do processing before and after delegating to the Action classes, which can lead deep class hierarchies and limitations due to the inability to have multiple inheritance WW:Comparison to Struts#1 Class hierarchies WebWork 2 allows you to modularize before and after processing in Interceptors. Interceptors can be applied dynamically via the configuration without any coupling between the Action classes and the Interceptors.
    Validation Struts calls validate() on the FormBean. Struts users often use Commons Validation for validation. I don't know a lot about this, so I'll put some questions here:
     
    Because FormBean properties are usually Strings, some types of validations must either be duplicated (checking type conversion) or cannot be done?
     
    Can Commons Validation have different validation contexts for the same class? (I've been told yes, so that's a good thing)
     
    Can Commons Validation chain to validations on sub-objects, using the validations defined for that object properties class?
    WebWork1.x calls the validate() method on Actions, which can either do programmatic validations or call an outside validation framework (this is apparently the same as Struts) WebWork2 can use the validate() method of WebWork and Struts and / or use the XW:Validation Framework, which is activated using an XWork Interceptor. The Xwork Validation Framework allows you to define validations in an XML format with default validations for a class and custom validations added for different validation contexts. The Xwork Validation Framework is enabled via an Interceptor and is therefore completely decoupled from your Action class. The Xwork Validation Framework also allows you to chain the validation process down into sub-properties using the VisitorFieldValidator which will use the validations defined for the properties class type and the validation context.
    Control Of Action Execution As far as I know Struts sets up the Action object for you, and you have very little control over the order of operations. To change them I think you need to write your own Servlet to handle dispatching as you want The ActionFactory chain controls the order in which an Action is constructed and initialised, but this requires writing a class The interceptor stacks in WebWork 2 are hugely powerful in this regard. All aspects of Action setup have been moved into Interceptor implementations (ie setting paramters from the web, validation etc), so you can control on a per action basis the order in which they are performed. For example you might want your IOC framework to setup the action before the parameters are set from the request or vice versa - you can thusly control this on a per package or per action basis with interceptor stacks.

    References

    Footnotes

    1. Some Stuts users have built the beginnings of an Interceptor framework for Struts (http://struts.sourceforge.net/saif/). It currently has some serious limitations (no "around" processing, just before and after) and is not part of the main Struts project

    posted on 2005-04-11 10:33 閱讀(228) 評論(0)  編輯  收藏 所屬分類: Struts

    主站蜘蛛池模板: 国产精品亚洲专区无码牛牛| 精品久久久久久亚洲中文字幕| 免费无码AV一区二区| 白白国产永久免费视频| 亚洲精品二三区伊人久久| 日韩在线免费视频| 亚洲精品亚洲人成在线观看麻豆| 国产精品免费无遮挡无码永久视频| 亚洲热线99精品视频| 羞羞视频免费网站在线看| 日韩一卡2卡3卡4卡新区亚洲| 免费无码专区毛片高潮喷水 | 成人午夜亚洲精品无码网站| 色婷婷综合缴情综免费观看| 免费在线观看的黄色网址| 久久精品国产精品亚洲精品| 久久久精品午夜免费不卡| 亚洲国产精品婷婷久久| 最近中文字幕2019高清免费| 亚洲国产精品综合福利专区| 成人av免费电影| 一二三区免费视频| 亚洲国产成人久久精品影视| 久久99九九国产免费看小说| 久久久久久亚洲精品无码| 亚洲线精品一区二区三区影音先锋 | 亚洲国产夜色在线观看| 在线观看免费成人| 成人福利在线观看免费视频| 久久亚洲精品成人777大小说| 120秒男女动态视频免费| 亚洲自偷自偷图片| 最近2022中文字幕免费视频| 无码亚洲成a人在线观看| 国产亚洲人成无码网在线观看| 亚洲成人免费网址| 黄页网址在线免费观看| 亚洲自偷自偷精品| 国产性生交xxxxx免费| 久爱免费观看在线网站| 亚洲а∨精品天堂在线|