• LOGIN
  • No products in the cart.

Struts Interview Questions

Explain Struts.

Struts is open source software used to develop java based web page.

Struts uses Jakarta Packages, Java Servlets, JavaBeans, ResourceBundles, and XML

Struts takes the help of Model View Controller (MVC) architecture. Where Model is referring to business or database, View is referring to the Page Design Code, and Controller is referring to navigational code.

What is Action Class?

An Action class in the struts application is used to handle the request.

It acts as interface or communication medium between the HTTP request coming to it and business logic used to develop the application.

Action class consists of RequestProcessor which act as controller. This controller will choose the best action for each incoming request, generate the instance of that action and execute that action.

This should be in thread-safe manner, because RequestProcessor uses the same instance for numbar of requests at same time.

What is Struts Validator Framework?

Struts Validator Framework enables us to validate the data of both client side and server side.

When some data validation is not present in the Validator framework, then programmer can generate own validation logic, this User Defined Validation logic can be bind with Validation Framework.

Validation Framework consist of two XML configuration Files:

  1. Validator-Rules.xml file
  2. Validation.xml file

Struts Interview Questions

What is the need of Struts?

We need Struts in Java because of following reasons:

Helps in creation and maintenance of the application.

Make use of Model View Controller (MVC) architecture. Where Model is referring to business or database, View is referring to the Page Design Code, and Controller is referring to navigational code.

Enables developer to make use of Jakarta Packages, Java Servlets, JavaBeans, ResourceBundles, and XML.

What are the classes used in Struts?

Struts Framework consists of following classes:

Action Servlets: Used to control the response for each incoming request.

Action Class: Used to handle the request.

Action Form: It is java bean, used to referred to forms and associated with action mapping.

Action Mapping: Used for mapping between object and action.

Action Forward: Used to forward the result from controller to destination.

How exceptions are handled in Struts application?

Exceptions are handled in struts by using any one of the following two ways:

Programmatically handling: In this exception are handled by using try and catch block in program. Using this programmer can define how to handle the situation when exception arises.

Declarative handling: In this exception handling is done by using the XML file. Programmer defines the exception handling logic in the XML file. There are two ways of defining the exception handling logic in the XML file:

Global Action Specific Exception Handler Definition.

Local Action Specific Exception Handler Definition.

What is MVC?

Model View Controller (MVC) is a design pattern used to perform changes in the application.

Model: Model is referring to business or database. It stores the state of the application. Model has no knowledge of the View and Controller components.

View: View is referring to the Page Design Code. It is responsible for the showing the result of the user’s query. View modifies itself when any changes in the model happen.

Controller: Controller is referring to navigational code. Controller will chose the best action for each incoming request, generate the instance of that action and execute that action.

Describe Validate() and reset() methods.

Validate() Method:

This method is used to validate the properties after they are explored by the application.

Validate method is Called before FormBean is handed to Action.

This method returns a collection of ActionError.

Syntax :

publicActionErrors validate(ActionMappingmapping,HttpServletRequest request)

Reset() Method:

This method is called by the Struts Framework with each request that uses the defined ActionForm.

Used to reset all the data from the ActionForm.

Syntax :

public void reset() {}

What design patterns are used in Struts?

There are following types of design patterns are used in Struts:

Service to Worker

Dispatcher View

Composite View (Struts Tiles)

Front Controller

View Helper

Synchronizer Token

What is the difference between session scope and request scope when saving FormBean?

The difference between session scope and request scope when saving FormBean are following:

In Request Scope, values of FormBean are available to current request but in Session Scope, values of FormBean are available throughout the session.

What is the different actions available in Struts?

The different kinds of actions in Struts are:

ForwardAction

IncludeAction

DispatchAction

LookupDispatchAction

SwitchAction

What is DispatchAction?

The DispatchAction enable the programmer to combine together related function or class.

Using Dispatch Action programmer can combine the user related action into a single UserAction. like add user, delete user and update user.

DispatchActionexecute the action based on the parameter value it receives from the user.

How to use DispatchAction?

We can use the Dispatch Action we executing following steps:

Create a class that extends DispatchAction.

In a new class, add a method: method has the same signature as the execute() method of an Action class.

Do not override execute() method.

Add an entry to struts-config.xml

What is the difference between ForwardAction and IncludeAction?

The difference between ForwardAction and InculdeAction are:

IncludeAction is used when any other action is going to intake that action whereas ForwardAction is used move the request from one resource to another resource.

What is difference between LookupDispatchAction and DispatchAction?

The difference between LookupDispatchAction and DispatchAction are given below:

LookupDispatchAction is the subclass of the DispatchAction.

Actual method that gets called in LookupDispatchAction whereas DispatchAction dispatches the action based on the parameter value.

What is LookupDispatchAction?

The LookupDispatchAction class is a subclass of DispatchAction.

The LookupDispatchAction is used to call the actual method.

For using LookupDispatchAction, first we should generate a subclass with a set of methods.

It control the forwarding of the request to the best resource in its subclass.

It does a reverse lookup on the resource bundle to get the key and then gets the method whose name is associated with the key into the Resource Bundle.

What is the life cycle of ActionForm?

The lifecycle of ActionForm is as follows:

Retrieve or Create Form Bean associated with Action.

“Store” FormBean in appropriate scope (request or session).

Reset the properties of the FormBean.

Populate the properties of the FormBean.

Validate the properties of the FormBean.

Pass FormBean to Action.

What are the loop holes of Struts?

The drawbacks of Struts are following:

Absence of backward flow mechanism.

Only one single controller Servlets is used.

Bigger learning curve.

Worst documentation.

No exception present in this framework.

Less transparent.

Rigid approach.

With struts 1, embedding application into JSP can’t be prevented.

Non-XML compliance of JSP syntax.

Difference between Html tags and Struts specific HTML Tags

Difference between HTML tag and Struts specific HTLM tags are:

HTML tags are static in nature but Struts specific HTML tags are dynamic in nature.

HTML tags are not User Defined whereas Struts tags can be user defined.

HTML tags provide the different templates and themes to the programmer whereas Struts specific HTML tag provides the integrating the property value with the Formbean properties.

HTML tags are integral part of Struts whereas Struts have HTML tag libraries.

How to combine the Struts with Velocity Template?

We can combine Struts and Velocity template by performing following steps:

  1. Set classpath to Velocity JARs.
  2. Make web.xml file to identify the Velocity servlet.
  3. Select Velocity toolbox.xml in WEB-INF directory.
  4. Modify struts-config to point its views to Velocity templates instead of JSPs.
  5. Create a Velocity template for each page you want to render.
  6. In how many ways duplicate form submission can occurs?

The submission form can be duplicated by the any of the following ways:

Using refresh button.

By clicking submit button more than once before the server sent back the response.

By clicking back navigation button present in browser.

The browser is restores to submit the form again.

By clicking multiple times on a transaction that is delayed than usual.

What is the use of ForwardAction?

The ForwardAction is used when we want to combine Struts with existing application.

Used when we want to transfer the control form JSP to local server.

Used to integrate with struts in order to take benefit of struts functionality, without writing the Servlets again.

Use to forward a request to another resource in your application.

What is IncludeAction?

The IncludeAction is used to integrate the one action file in another action file.

It is same as ForwardAction but the only difference is that the resource is present in HTTP response.

Is used to combine the Struts functionality and control into an application that uses Servlets.

Use the IncludeAction class to include another resource in the response to the request being processed.

What are the various Struts tag libraries?

The various Struts tag libraries are:

HTML Tags: used to create the struts input forms and GUI of web page.

Bean Tags: used to access bean and their properties.

Logic Tags: used to perform the logical operation like comparison.

Template Tags: used to changes the layout and view.

Nested Tags: used to perform the nested functionality.

Tiles Tags: used to manages the tiles of the application.

What is the difference between Struts 1 and struts2?

The difference between struts1 and struts2 are below:

Struts1 uses ActionServlet as Controller where as Struts2 uses Filter as a controller.

Struts1 uses the ActionForm for mapping the JSP forms but in struts2 there no such ActionForm.

Struts1 uses Validation() method to validate the data in the page forms where as struts 2 validation of data is ensure by Validator Framework.

In Struts 1 the bean and logic tag libraries are often replaced by JSTL, but Struts 2 has such tag libraries that we don’t need to use JSTL.

What is the difference between session scope and request scope when saving FormBean?

The difference between session scope and request scope when saving FormBean are following:

In Request Scope, values of FormBean are available to current request but in Session Scope, values of FormBean are available throughout the session.

How to display validation errors on JSP page?

Validation error:

Validation error are those error which arises when user or client enters the invalid format data into the form. For this validation of data struts enables the programmer with the Validator() method which validates both the data from client side and the server side.

We can display all error in the JSP page by using the following syntax in the code.

What is role of Action Class?

An Action class in the struts application is used to handle the request.

It acts as interface or communication medium between the HTTP request coming to it and business logic used to develop the application.

Action class consists of RequestProcessor which act as controller. This controller will choose the best action for each incoming request, generate the instance of that action and execute that action.

This should be in thread-safe manner, because RequestProcessor uses the same instance for no. of requests at same time.

November 26, 2019
GoLogica Technologies Private Limited  © 2019. All rights reserved.