引用
struts1用了一年,到现在也有一年没用了.webwork用了快一年了.现在又开始转向struts.这两天开始看struts2.感觉struts2跟webwork简直就是一个东西.换汤不换药.看了文档才知道原来struts2=struts1+webwork.所以也很容易上手了. struts2文档里记录下来的 struts1与struts2的比较.
1.Action classes :
- Struts1:Struts 1 requires Action classes to extend an abstract base class. A common problem in Struts 1 is programming to abstract classes instead of interfaces.
- Struts2:An Struts 2 Action may implement an Action interface, along with other interfaces to enable optional and custom services. Struts 2 provides a base ActionSupport class to implement commonly used interfaces. Albeit, the Action interface is not required. Any POJO object with a execute signature can be used as an Struts 2 Action object.
2.Threading Model :
- Struts1:Struts 1 Actions are singletons and must be thread-safe since there will only be one instance of a class to handle all requests for that Action. The singleton strategy places restrictions on what can be done with Struts 1 Actions and requires extra care to develop. Action resources must be thread-safe or synchronized.
- Struts2:Struts 2 Action objects 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 impose a performance penalty or impact garbage collection.)
3.Servlet Dependency :
- Struts1:Struts 1 Actions have dependencies on the servlet API since the HttpServletRequest and HttpServletResponse is passed to the execute method when an Action is invoked.
- Struts2:Struts 2 Actions are not coupled to a container. Most often the servlet contexts are represented as simple Maps, allowing Actions to be tested in isolation. Struts 2 Actions can still access the original request and response, if required. However, other architectural elements reduce or eliminate the need to access the HttpServetRequest or HttpServletResponse directly.
4.Testability :
- Struts1:A major hurdle to testing Struts 1 Actions is that the execute method exposes the Servlet API. A third-party extension, Struts TestCase, offers a set of mock object for Struts 1.
- Struts2:Struts 2 Actions can be tested by instantiating the Action, setting properties, and invoking methods. Dependency Injection support also makes testing simpler.
5.Harvesting Input :
- Struts1:Struts 1 uses an ActionForm object to capture input. Like Actions, all ActionForms must extend a base class. Since other JavaBeans cannot be used as ActionForms, developers often create redundant classes to capture input. DynaBeans can used as an alternative to creating conventional ActionForm classes, but, here too, developers may be redescribing existing JavaBeans.
- Struts2:Struts 2 uses Action properties as input properties, eliminating the need for a second input object. Input properties may be rich object types which may have their own properties. The Action properties can be accessed from the web page via the taglibs. Struts 2 also supports the ActionForm pattern, as well as POJO form objects and POJO Actions. Rich object types, including business or domain objects, can be used as input/output objects. The ModelDriven feature simplifies taglb references to POJO input objects.
6.Expression Language :
- Struts1:Struts 1 integrates with JSTL, so it uses the JSTL EL. The EL has basic object graph traversal, but relatively weak collection and indexed property support.
- Struts2:Struts 2 can use JSTL, but the framework also supports a more powerful and flexible expression language called "Object Graph Notation Language" (OGNL).
7.Binding values into views :
- Struts1:Struts 1 uses the standard JSP mechanism for binding objects into the page context for access.
- Struts2:Struts 2 uses a "ValueStack" technology so that the taglibs can access values without coupling your view to the object type it is rendering. The ValueStack strategy allows reuse of views across a range of types which may have the same property name but different property types.
8.Type Conversion :
- Struts1:Struts 1 ActionForm properties are usually all Strings. Struts 1 uses Commons-Beanutils for type conversion. Converters are per-class, and not configurable per instance.
- Struts2:Struts 2 uses OGNL for type conversion. The framework includes converters for basic and common object types and primitives.
9.Validation :
- Struts1:Struts 1 supports manual validation via a validate method on the ActionForm, or through an extension to the Commons Validator. Classes can have different validation contexts for the same class, but cannot chain to validations on sub-objects.
- Struts2:Struts 2 supports manual validation via the validate method and the XWork Validation framework. The Xwork Validation Framework supports chaining validation into sub-properties using the validations defined for the properties class type and the validation context.
10.Control Of Action Execution :
- Struts1:Struts 1 supports separate Request Processors (lifecycles) for each module, but all the Actions in the module must share the same lifecycle.
- Struts2:Struts 2 supports creating different lifecycles on a per Action basis via Interceptor Stacks. Custom stacks can be created and used with different Actions, as needed.
分享到:
相关推荐
文章“Comparing the Struts 1 and Struts 2 Web Application Frameworks”可能详细分析了这两个框架的各个方面,包括但不限于配置方式、开发效率、错误处理、性能测试等。通过阅读文档,开发者可以获取更多实用的...
“Analyzing and Comparing Montgomery Multiplication Algorithms”(分析与比较蒙哥马利模乘算法)这篇文章旨在深入探讨并对比不同的蒙哥马利模乘算法实现方法。蒙哥马利模乘算法是一种在计算机科学中广泛应用的...
这份2015年的学习笔记是针对Java 8的详细教程,包含了丰富的知识内容和书签标记,方便读者快速定位和复习。 1. **Lambda表达式**:Java 8引入了lambda表达式,这是一种简洁的匿名函数表示法,可以作为方法参数或...
### 树编辑距离算法在简单闭合形状比较中的应用 #### 概述 本文介绍了一种基于树编辑距离算法来比较平面中简单闭合曲线的方法。这种方法首先将一个形状通过其骨架表示为一棵嵌入平面的树,然后通过计算两棵树之间...
How to retrieve, update, and delete data quickly and logically using LINQ with side-by-side examples comparing LINQ to existing techniques * Ways to localize your web site in multiple languages ...
CAN FD 传统CAN之比较 CAN-FD比CAN总线的带宽更高,具有与CAN总线相似的控制器接口,这种相似性使ECU供应商不需要对ECU的软件部分做大规模修改,降低了开发难度和成本。CAN-FD是CAN总线的升级换代设计,它继承了CAN...
标题中的“nslations as Manipulation and Rewriting- Comparing the Different Translations”涉及的是翻译研究的一个重要领域,即翻译的操纵与改写,并通过比较不同的翻译版本来探讨这一主题。这篇论文可能深入...
此软件介绍webwork and struts and jsf的区别
本文《Attention Flows:Analyzing and Comparing Attention Mechanisms in Language Models》是一篇研究论文,主要关注于深度学习领域内语言模型的注意力机制。随着自然语言处理(NLP)技术的发展,基于注意力机制...
在内容部分中,提到的文章“Characterizing and Comparing Phylogenies from their Laplacian Spectrum”发表在系统生物学杂志(Systematic Biology)上,卷号为65,期号为3,页码范围495-507。文章是通过拉普拉斯谱...
Comparing-KerasCV-YOLOv8-Models-on-the-Global-Wheat-Data
matlab精度检验代码贝叶斯比较分类器分析 这是Janez Demsar的Python库baycomp的某些功能的小MATLAB实现,可从此处获得:。 该代码可用于使用本文提出的带符号秩检验比较两个分类器: 该存储库包含以下文件: ...
这份“Java JDK 8学习笔记”涵盖了这一版本的关键知识点,对于初学者和进阶者都是宝贵的参考资料。 1. **lambda表达式**:JDK 8引入了lambda表达式,它简化了函数式编程,使得处理集合数据时的代码更加简洁。Lambda...
标题《Modeling-and-Simulation-in-Python》表明这是一本关于在Python中进行建模与仿真的指南。从文件描述来看,文档的版本为1.0.2,由Allen B. Downey所著,属于Green Tea Press出版社,发布于2017年。出版社位于...
本篇学习笔记将深入探讨如何在Java中对日期进行排序,主要包括以下几个方面: 1. **日期对象的创建** 在Java中,我们可以使用`java.util.Date`类或者`java.time`包中的`LocalDate`, `LocalDateTime`等类来表示日期...
1. Bluetooth低功耗(BLE) BLE是蓝牙技术的低功耗版本,它最初作为Nokia的一个项目开始,之后成为蓝牙技术4.0版本的一部分。BLE设计用来实现非常低功耗的设备间短距离通信。它支持快速连接和数据传输,广泛应用于可...
2002年发表的论文《Comparing Linear Discriminant Analysis and Support Vector Machine》对比了这两种算法在分类任务中的表现和特点。由于文档内容是由OCR扫描技术处理,可能包含文字识别错误或遗漏。不过,我们仍...