Top 50 Struts Interview Questions and Answers (2024)

Here are Struts interview questions and answers for freshers as well as experienced candidates to get their dream job.


1. What are the components of Struts Framework?

Struts framework is comprised of following components:

  1. Java Servlets
  2. JSP (Java Server Pages)
  3. Custom Tags
  4. Message Resources

Free PDF Download: Struts Interview Questions and Answers


2. What’s the role of a handler in MVC based applications?

It’s the job of handlers to transfer the requests to appropriate models as they are bound to the model layer of MVC architecture. Handlers use mapping information from configuration files for request transfer.


3. What’s the flow of requests in Struts based applications?

Struts based applications use MVC design pattern. The flow of requests is as follows:

  • User interacts with View by clicking any link or by submitting any form.
  • Upon user’s interaction, the request is passed towards the controller.
  • Controller is responsible for passing the request to appropriate action.
  • Action is responsible for calling a function in Model which has all business logic implemented.
  • Response from the model layer is received back by the action which then passes it towards the view where user is able to see the response.

4.  Which file is used by controller to get mapping information for request routing?

Controller uses a configuration file “struts-config.xml file to get all mapping information to decide which action to use for routing of user’s request.


5.  What’s the role of Action Class in Struts?

In Struts, Action Class acts as a controller and performs following key tasks:

  • After receiving user request, it processes the user’s request.
  • Uses appropriate model and pulls data from model (if required).
  • Selects proper view to show the response to the user.
Struts Interview Questions
Struts Interview Questions

6. How an actionForm bean is created?

Surrogate

actionForm bean is created by extending the class org.apache.struts.action.ActionForm

In the following example we have created an actionForm bean with the name 'testForm':

import javax.servlet.http.HttpServletRequest; 
import org.apache.struts.action.*; 
public class testForm extends ActionForm { 
private String Id=null; 
private String State=null; 
public void setId(String id){
this.Id=id; 
} 
public String getId(){
return this.Id;
}
public void setState(String state){ 
this.State=state; 
} 
public String getState(){ 
return this.State; 
}

7. What are the two types of validations supported by Validator FrameWork?

Validator Framework is used for form data validation. This framework provides two types of validations:

  1. Client Side validation on user’s browser
  2. Server side validation

8. What are the steps of Struts Installation?

In order to use Struts framework, we only need to add Struts.Jar file in our development environment. Once jar file is available in the CLASSPATH, we can use the framework and develop Strut based applications.

Struts Interview Questions
Struts Interview Questions

9. How client side validation is enabled on a JSP form?

In order to enable client side validation in Struts, first we need to enable validator plug-in in struts-config.xml file. This is done by adding following configuration entries in this file:

<!--  Validator plugin -->
<plug-in className="org.apache.struts.validator.ValidatorPlugIn">
<set-property
property="pathnames"
value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
</plug-in>

Then Validation rules are defined in validation.xml file. If a form contains email field and we want to enable client side validation for this field, following code is added in validation.xml file:

<form name="testForm">
<field  property="email"
depends="required">
<arg key="testForm.email"/>
</field>
</form>

10. How action-mapping tag is used for request forwarding in Struts configuration file?

In Struts configuration file (struts-config.xml), forwarding options are defined under action-mapping tag.

In the following example, when a user will click on the hyperlink test.do, request will be forwarded to /pages/testing.jsp using following configurations from struts-config.xml file:

<action  path="/test" forward="/pages/testing.jsp">

This forwarding will take place when user will click on following hyperlink on the jsp page:

<html:link</strong> page="/test.do</strong>">Controller Example</html:link>

11. How duplicate form submission can be controlled in Struts?

In Struts, action class provides two important methods which can be used to avoid duplicate form submissions.

saveToken() method of action class generates a unique token and saves it in the user’s session. isTokenValid() method is used then used to check uniqueness of tokens.


12. In Struts, how can we access Java beans and their properties?

Bean Tag Library is a Struts library which can be used for accessing Java beans.


13. Which configuration file is used for storing JSP configuration information in Struts?

For JSP configuration details, Web.xml file is used.


14. What’s the purpose of Execute method of action class?

Execute method of action class is responsible for execution of business logic. If any processing is required on the user’s request, it’s performed in this method. This method returns actionForward object which routes the application to appropriate page.

In the following example, execute method will return an object of actionForward defined in struts-config.xml with the name “exampleAction”:

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

public class actionExample extends Action
{
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception{
return mapping.findForward("exampleAction");
}
}

15. What’s the difference between validation.xml and validator-rules.xml files in Struts Validation framework?

In Validation.xml, we define validation rules for any specific Java bean while in validator-rules.xml file, standard and generic validation rules are defined.


16. How can we display all validation errors to user on JSP page?

To display all validation errors based on the validation rules defined in validation.xml file, we use <html:errors /> tag in our JSP file.


17. What’s declarative exception handling in Struts?

When logic for exception handling is defined in struts-config.xml or within the action tag, it’s known as declarative exception handling in Struts.

In the following example, we have defined exception in struts-config.xml file for NullPointerException:

<global-exceptions>

<exception key="test.key"

Type="java.lang.NullPointerException"

Path="/WEB-INF/errors/error_page.jsp"

</global-exceptions>

18. What’s DynaActionForm?

DynaActionForm is a special type of actionForm class (sub-class of ActionForm Class) that’s used for dynamically creating form beans. It uses configuration files for form bean creation.


19. What configuration changes are required to use Tiles in Struts?

To create reusable components with Tiles framework, we need to add following plugin definition code in struts-config.xml file:

<plug-in className="org.apache.struts.tiles.TilesPlugin" >

<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />

<set-property property="moduleAware" value="true" />

</plug-in>

20. What’s the difference between Jakarta Struts and Apache Struts? Which one is better to use?

Both are same and there is no difference between them.


21. What’s the use of Struts.xml configuration file?

Struts.xml file is one the key configuration files of Struts framework which is used to define mapping between URL and action. When a user’s request is received by the controller, controller uses mapping information from this file to select appropriate action class.


22. How tag libraries are defined in Struts?

Tag libraries are defined in the configuration file (web.xml) inside <taglib> tag as follows:

<taglib>

<taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>

<taglib-location>/WEB-INF/struts-bean.tld</taglib-location>

</taglib>

23. What’s the significance of logic tags in Struts?

Use of logic tags in Struts helps in writing a clean and efficient code at presentation layer without use of scriptlets.


24. What are the two scope types for formbeans?

  • Request Scope: Formbean values are available in the current request only
  • Session Scope: Formbean values are available for all requests in the current session.

25. How can we group related actions in one group in Struts?

To group multiple related actions in one group, we can use DispatcherAction class.


26. When should we use SwtichAction?

The best scenario to use SwitchAction class is when we have a modular application with multiple modules working separately. Using SwitchAction class we can switch from a resource in one module to another resource in some different module of the application.


27. What are the benefits of Struts framework?

Struts is based on MVC and hence there is a good separation of different layers in Struts which makes Struts applications development and customization easy. Use of different configuration files makes Struts applications easily configurable. Also, Struts is open source and hence, cost effective.


28. What steps are required to for an application migration from Struts1 to Struts2?

Following Steps are required for Struts1 to Struts2 migration:

  1. Move Struts1 actionForm to Struts2 POJO.
  2. Convert Struts1 configuration file (struts-config.xml) to Struts2 configuration file (struts.xml)

29. How properties of a form are validated in Struts?

For validation of populated properties, validate() method of ActionForm class is used before handling the control of formbean to Action class.


30. What’s the use of reset method of ActionForm class?

reset method of actionForm class is used to clear the values of a form before initiation of a new request.


31. What are disadvantages of Struts?

Although Struts have large number of advantages associated, it also requires bigger learning curve and also reduces transparency in the development process.

Struts also lack proper documentation and for many of its components, users are unable to get proper online resources for help.


32. What’s the use of resourcebundle.properties file in Struts Validation framework?

resourcebundle.properties file is used to define specific error messages in key value pairs for any possible errors that may occur in the code.

This approach helps to keep the code clean as developer doesn’t need to embed all error messages inside code.


33. Can I have html form property without associated getter and setter formbean methods?

For each html form property, getter and setter methods in the formbean must be defined otherwise application results in an error.


34. How many servlet controllers are used in a Struts Application?

Struts framework works on the concept of centralized control approach and the whole application is controlled by a single servlet controller. Hence, we require only one servlet controller in a servlet application.


35. For a single Struts application, can we have multiple struts-config.xml files?

We can have any number of Struts-config.xml files for a single application.

We need following configurations for this:

<servlet>

<servlet-name>action</servlet-name>

<servlet-class>

org.apache.struts.action.ActionServlet

</servlet-class>

<init-param>

<param-name>config</param-name>

<param-value>

/WEB-INF/struts-config.xml

/WEB-INF/struts-config_user.xml

/WEB-INF/struts-config_admin.xml

</param-value>

</init-param>

.............

.............

</servlet>

36. Which model components are supported by Struts?

Struts support all types of models including Java beans, EJB, CORBA. However, Struts doesn’t have any in-built support for any specific model and it’s the developer’s choice to opt for any model.


37. When it’s useful to use IncludeAction?

IncludeAction is action class provided by Struts which is useful when an integration is required between Struts and Servlet based application.


38. Is Struts thread safe?

Yes Struts are thread safe. In Struts, a new servlet object is not required to handle each request; rather a new thread of action class object is used for each new request.


39. What configuration changes are required to use resource files in Struts?

Resource files (.properties files) can be used in Struts by adding following configuration entry in struts-config.xml file:

<message-resources parameter="com.login.struts.ApplicationResources"/>

40. How nested beans can be used in Struts applications?

Struts provide a separate tag library (Nested Tag Library) for this purpose. Using this library, we can nest the beans in any Struts based application.


41. What are the Core classes of Struts Framework?

Following are the core classes provided by Struts Framework:

  • Action Class
  • ActionForm Class
  • ActionMapping Class
  • ActionForward Class
  • ActionServlet Class

42. Can we handle exceptions in Struts programmatically?

Yes we can handle exceptions in Struts programmatically by using try, catch blocks in the code.

try {

// Struts code

}

Catch (Exception e) {

// exception handling code

}

43. Is Struts Framework part of J2EE?

Although Struts framework is based on J2EE technologies like JSP, Java Beans, Servlets etc but it’s not a part of J2EE standards.


44.  How action mapping is configured in Struts?

Action mappings are configured in the configuration file struts-config.xml under the tag <action-mapping> as follows:

<pre><action-mappings>
<action path="/login"
type="login.loginAction"
name="loginForm"
input="/login.jsp"
scope="request"
validate="true">
<forward name="success" path="/index.jsp"/>
<forward name="failure" path="/login_error.jsp"/>
</action>
</action-mappings>

45. When should be opt for Struts Framework?

Struts should be used when any or some of the following conditions are true:

  • A highly robust enterprise level application development is required.
  • A reusable, highly configurable application is required.
  • A loosely coupled, MVC based application is required with clear segregation of different layers.

46. Why ActionServlet is singleton in Struts?

In Struts framework, actionServlet acts as a controller and all the requests made by users are controlled by this controller. ActionServlet is based on singleton design patter as only one object needs to be created for this controller class. Multiple threads are created later for each user request.


47. What are the steps required for setting up validator framework in Struts?

Following Steps are required to setup validator framework in Struts: – Wrong Spelling

  1. In WEB-INF directory place valdator-rules.xml and validation.xml files.
  2. Enable validation plugin in struts-config.xml files by adding following:
<plug-in className="org.apache.struts.validator.ValidatorPlugIn">
<set-property property="pathnames" value="/WEB-INF/validator-rules.xml,
/WEB-INF/validation.xml"/>
</plug-in>

48. Which technologies can be used at View Layer in Struts?

In Struts, we can use any of the following technologies in view layer:

  • JSP
  • HTML
  • XML/XSLT
  • WML Files
  • Velocity Templates
  • Servlets

49. What are the conditions for actionForm to work correctly?

ActionForm must fulfill following conditions to work correctly:

  • It must have a no argument constructor.
  • It should have public getter and setter methods for all its properties.

50.  Which library is provided by Struts for form elements like check boxes, text boxes etc?

Struts provide HTML Tags library which can be used for adding form elements like text fields, text boxes, radio buttons etc.


These interview questions will also help in your viva(orals)

Share

3 Comments

  1. Thank you so much sir,Awesome ;):)download pdf link is not working.Thanks

    1. Error Fixed! Thanks for reporting

Leave a Reply

Your email address will not be published. Required fields are marked *