Struts Interview Questions
Here we are going to see some important struts framework interview questions and answers which is mostly asked in advanced java or j2ee interviews.
Let's see one-by-one java struts interview questions and answers.
public static final String SUCCESS = "success"
Visit for more java interview Questions, link given below
Servlet Interview Questions.
JSP Interview Questions.
OOPS Interview Questions.
Top 10 Java Coding Interview Questions.
Here we discussed some most important Struts interview questions and answers in java. It will be useful to you.
Let's see one-by-one java struts interview questions and answers.
(1) What is Struts?
Struts is a framework which is used to create java based web application by using MVC design pattern.
Struts framework is an open source framework and extends servlet API.
(2) Which packages Struts framework use?
Struts framework use some package for developing web application e.g Java Servlets, Java Beans, XML, ResourceBundle, Jakarta packages.
(3) What is MVC?
MVC(Model View Controller) is a design pattern by using this we can design and develop the web application.
Model represents the data and business logic.
View used for presentation of the model.
Controller It takes the input from the user and acts as an interface between model and view.
(4) What are the components of Struts?
There are 3 main components of the struts framework which is used to develop web applications and these are given below.
Model(java file) for containing state and business logic.
View(html, jsp, etc file) for presentation.
Controller(Servlet or Filter) for handling request from the users.
(5) What is an Interceptor in Struts?
Interceptor is an object which provides the preprocessing and postprocessing logic before and after the action is called.
(6) What is a Configuration file in Struts?
Configuration file is a file in struts where we define action class component and view components and Interceptor also.
(7) What is struts.xml?
Struts framework provide struts.xml file which is called configuration file for mapping of an action class component and view components.
(8) What is multi-configuration in Struts?
In Struts, multi-configuration means we can use more than one .xml file for mapping e.g first.xml and second.xml, struts.xml but we have to define first.xml and second.xml in struts.xml configuration file.
(9) What is Value Stack?
Value stack contains application objects like action and other model objects.
(10) What is ActionInvocation?
It holds the action and interceptor and invokes the action.
(11) Can we create own interceptors in Struts?
Yes, We can create own interceptors in struts framework.
(12) How to create own or custom interceptors in Struts?
We can create own or custom interceptor in java struts framework by implementing Interceptor interface.
(13) What is POJO?
POJO(Plain Old Java Object) class is simple a action class(java class).
(14) What is the role of Action class?
An action class act as an adapter between the contents of an incoming request and the corresponding business logic that should be executed to process this request.(15) What is ActionSupport?
In struts, ActionSupport is a class which implements Action, Validateable, Serializable etc interfaces and overrides execute() method of Action interface.(16) What is Action?
Action is an interface with execute() method and 5 constants which is given below.
public static final String ERROR = "error"
public static final String LOGIN = "login"
public static final String INPUT = "input"
public static final String NONE = "none"
In Struts , execute() method is used for business logic in action class.(17) Why use execute() method?
(18) What is Zero Configuration?
Zero configuration means there is no need of configuration files like struts.xml etc. It is possible by using annotation or naming convention.(19) What are the classes used as part of Struts framework?
There are some classes used in struts e.g Action Servlet, Action Class, Action Form, Action Mapping, Action Forward.(20) What validate() and reset() method does?
Both methods are defined in the form bean. Validate method is used to validate the request parameter and reset method clear the action form data members.Visit for more java interview Questions, link given below
Servlet Interview Questions.
JSP Interview Questions.
OOPS Interview Questions.
Top 10 Java Coding Interview Questions.
Here we discussed some most important Struts interview questions and answers in java. It will be useful to you.