Thursday, April 17, 2008

Interview Questions on Struts Framework

The Struts Framework is becoming popular day by day and it has become a hot selling expertise in IT field. Struts Framework has become an important skill to have for a Java Web Developer and the IT industry is looking out for more and more struts developers.

Even though we have lot of experience, we sometime fail to answer from basic questions on Struts Framework. So here is the collection of some frequently asked questions on struts framework for your quick reference during Job hunt.

Frequently asked questions on Struts


1. What is Struts? Explain in some few words

Struts framework is a popular framework for developing web applications using Java technology. It follows Model – View – Control (MVC) architecture.

The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and XML, as well as various Jakarta Commons packages. Struts encourage application architectures based on the Model 2 approach, a variation of the classic Model-View-Controller (MVC) design paradigm.
Struts provide its own Controller component and integrate with other technologies to provide the Model and the View. For the Model, Struts can interact with standard data access technologies, like JDBC and EJB, as well as most any third-party packages, like Hibernate, iBATIS, or Object Relational Bridge. For the View, Struts works well with Java Server Pages (JSP), including JSTL and JSF, as well as Velocity Templates, XSLT, and other presentation systems.
The Struts framework provides the invisible underpinnings every professional web application needs to survive. Struts helps you create an extensible development environment for your application, based on published standards and proven design patterns.

2. What is Jakarta Struts Framework?

Jakarta Struts is open source implementation of MVC (Model-View-Controller) pattern for the development of web based applications. Jakarta Struts is robust architecture and can be used for the development of application of any size. Struts framework makes it much easier to design scalable, reliable Web applications with Java.

3. What is Action Servlet?

The class org.apache.struts.action.ActionServlet is called the ActionServlet. In the Jakarta Struts Framework this class plays the role of controller. All the requests to the server go through the controller. Controller is responsible for handling all the requests.

4. How you will make available any Message Resources Definitions file to the Struts Framework Environment?

The Message Resources Definitions file are simple .properties files and these files contains the messages that can be used in the struts project.

Message Resources Definitions files can be added to the struts-config.xml file through tag.

Example:
.

5. What is Action Class?

The Action Class is part of the Model and is a wrapper around the business logic.

The purpose of Action Class is to translate the HttpServletRequest to the business logic. To use the Action, we need to Subclass and overwrite the execute() method. In the Action Class all the database/business processing is done. It is advisable to perform all the database related stuffs in the Action Class.

The ActionServlet (commad) passes the parameterized class to Action Form using the execute () method. The return type of the execute method is ActionForward which is used by the Struts Framework to forward the request to the file as per the value of the returned ActionForward object.

6. What is ActionForm?

An ActionForm is a JavaBean that extends org.apache.struts.action.ActionForm.

ActionForm maintains the session state for web application and the ActionForm object is automatically populated on the server side with data entered from a form on the client side.

7. What is Struts Validator Framework?

Struts Framework provides the functionality to validate the form data. It can be used to validate the data on the user’s browser as well as on the server side.

Struts Framework emits the java scripts and it can be used validate the form data on the client browser. Server side validation of form can be accomplished by sub classing your From Bean with DynaValidatorForm class.

The Validator framework was developed by David Winterfeldt as third-party add-on to Struts. Now the Validator framework is a part of Jakarta Commons project and it can be used with or without Struts. The Validator framework comes integrated with the Struts Framework and can be used without doing any extra settings.

8. Give the Details of XML files used in Validator Framework?
The Validator Framework uses two XML configuration files validator-rules.xml and validation.xml. The validator-rules.xml defines the standard validation routines, these are reusable and used in validation.xml to define the form specific validations. The validation.xml defines the validations applied to a form bean.

9. How you will display validation fail errors on jsp page?

Following tag displays all the errors:


10. How you will enable front-end validation based on the xml in validation.xml?

The tag to allow front-end validation based on the xml in validation.xml.

For example the code:


generates the client side java script for the form \"logonForm\" as defined in the validation.xml file.

The when added in the jsp file generates the client site validation script.

11. How to get data from the velocity page in a action class?

We can get the values in the action classes by using
data.getParameter(\"variable name defined in the velocity page\");


Will update some more questions soon.

Leave you comments and questions and will reply to it.
Checkout my other blogs
http://vinayknl.blogspot.com/

References
http://struts.apache.org/
- Vinay

No comments: