Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Difference between Struts 1 and Struts 2

Struts 1 Struts 2
Action Classes: 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. Action Classes: 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.
Threading Model: 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. Threading Model: 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.)
Servlet Dependency: 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. Servlet Dependency: 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.
Testability: 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. Testability: Struts 2 Actions can be tested by instantiating the Action, setting properties, and invoking methods. Dependency Injection support also makes testing simpler.
Harvesting Input: 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. Harvesting Input: 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.
Expression Language: 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. Expression Language: Struts 2 can use JSTL, but the framework also supports a more powerful and flexible expression language called "Object Graph Notation Language" (OGNL).
Binding values into views: Struts 1 uses the standard JSP mechanism for binding objects into the page context for access. Binding values into views: 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.
Type Conversion: 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. Type Conversion: Struts 2 uses OGNL for type conversion. The framework includes converters for basic and common object types and primitives.
Validation: 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. Validation: 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.
Control of Action Execution: Struts 1 supports separate Request Processors (lifecycles) for each module, but all the Actions in the module must share the same lifecycle. Control of Action Execution: 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.

Related differences

Struts 1 vs Struts 2Struts 1.1 vs Struts 1.2Struts 1.2 vs Struts 1.3
Is it helpful? Yes No

Get differences from below

Android vs iOSAngular vs ReactAngularJS vs NodeJS
AngularJS vs AngularAnsible vs TerraformAnsible vs Puppet
Apache vs IISAWS vs AzureAWS vs Google Cloud/GCP
AWT vs SwingC vs C++CSS 2 vs CSS 3
EJB 1.0 vs EJB 2.0EJB 2.0 vs EJB 3.0EJB 3.0 vs Spring
Golang vs JavaGraphQL vs RESTful Web Services (REST API)Hibernate 3 vs Hibernate 4
HTML vs XMLHTML vs XHTMLHTML vs DHTML
HTML 5 vs HTML 4HTTP vs HTTPSInstagram vs YouTube
J2EE vs J2MEJava vs C++Java vs J2EE
Java vs KotlinJava vs .NETJava 1.0 vs Java 1.1
Java 1.1 vs Java 1.2Java 1.2 vs Java 1.3Java 1.3 vs Java 1.4
Java 1.4 vs Java 5Java 10 vs Java 11Java 11 vs Java 12
Java 12 vs Java 13Java 13 vs Java 14Java 14 vs Java 15
Java 15 vs Java 16Java 16 vs Java 17Java 17 vs Java 18
Java 5 vs Java 6Java 6 vs Java 6 update 10Java 6 vs Java 7
Java 6 update 10 vs Java 6 update 12Java 7 vs Java 8Java 8 vs Java 9
Java 9 vs Java 10JavaBeans vs EJBJavaScript vs Jquery
JavaScript vs VBScriptJavaScript vs TypeScriptJboss vs Tomcat
Jboss vs WebLogicJDBC vs HibernateJDBC vs JPA
JDBC 3.0 vs JDBC 4.0JPA vs HibernateJquery vs AngularJS
jQuery Mobile vs BootstrapJSF vs JSPJSF 1.2 vs JSF 2.0
JSF 2.0 vs JSF 2.1JSON vs XMLJSP vs Servlets
JSP vs ASPLinux vs UnixMonolithic vs Microservices
MVC 1 vs MVC 2NodeJS vs JavaNodeJS vs Spring Boot
NodeJS vs GolangOn-Premise vs Cloud ComputingOpenID Connect vs OAuth 2.0
OracleJDK vs OpenJDKPaaS vs IaaSPHP vs JSP
Puppet vs TerraformPython vs JavaPython 2 vs Python 3
RDBMS vs HadoopRESTful Web Services vs SOAP Web ServicesRESTful Web Services (REST API) vs gRPC
SaaS vs PaaSSaaS vs IaaSSAML vs OpenID Connect
Spring vs Spring BootSpring 2.5 vs Spring 3.0Spring 3.0 vs Spring 4.0
Spring MVC vs Spring BootStruts vs JSFStruts vs Spring
Struts 1 vs Struts 2Struts 1.1 vs Struts 1.2Struts 1.2 vs Struts 1.3
Swing vs AppletTensorFlow vs PyTorchTikTok vs Instagram
WebLogic vs Websphere
©2024 WithoutBook