Jakarta Struts Interview Questions

Q: What is Jakarta Struts Framework?
A: 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.
Q: What is ActionServlet?
A: The class org.apache.struts.action.ActionServlet is the called
the ActionServlet. In the the Jakarta Struts Framework this class plays the
role of controller. All the requests to the server goes through the
controller. Controller is responsible for handling all the requests.
Q: How you will make available any Message
Resources Definitions file to the Struts Framework Environment?
A: 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 <message-resources />
tag.
Example:
<message-resources parameter="MessageResources" />
Q: What is Action Class?
A: The Action is part of the controller. 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. The ActionServlet (commad)
passes the parameterized class to Action Form using the execute()
method. There should be no database interactions in the action. The action should receive the request, call business objects (which then handle database, or interface with J2EE, etc) and then determine where to go next. Even better, the business objects could be handed to the action at runtime (IoC style) thus removing any dependencies on the model.
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.
Q: Write code of any Action Class?
A: Here is the code of Action Class that returns the ActionForward object.
TestAction.java
package roseindia.net;
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 TestAction extends Action
{ public ActionForward execute( ActionMapping mapping,
ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception{
return mapping.findForward("testAction");
} }
|
|
Q: What is ActionForm?
A: 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.
Q: What is Struts Validator Framework?
A: Struts Framework provides the functionality to validate
the form data. It can be use to validate the data on the users 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.
Q. Give the Details of XML files used in Validator
Framework?
A: 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.
Q. How you will display validation fail errors on
jsp page?
A: Following tag displays all the errors:
<html:errors/>
Q. How you will enable front-end validation based on the xml in
validation.xml?
A: The <html:javascript> tag to allow front-end validation based on the xml in
validation.xml. For example the code: <html:javascript formName="logonForm"
dynamicJavascript="true" staticJavascript="true" />
generates the client side java script for the form "logonForm" as
defined in the validation.xml file. The <html:javascript>
when added in the jsp file generates the client site validation script.

|
Current Comments
36 comments so far (post your own) View All Comments Latest 10 Comments:Hi
I need all the questions regarding Struts,Jsp and Servlet and JDBC. Thanks
Posted by Gupta on Sunday, 04.27.08 @ 11:02am | #57975
Dear Sir
I m very expire of your site.This is only one palate form where we find all the information on one place. Technical interview as will as hr interview question i find on one place
Thanks
Nitya Nand Pandey
MCA(India)
Posted by Nitya Nand Pandey on Monday, 12.24.07 @ 16:40pm | #43585
how can v write the code on our own for a particular application?how can we practice the same?
Posted by sindhu on Tuesday, 11.27.07 @ 12:36pm | #40668
how do u validate from without using dynaaction and dynavalidator classes?
Posted by xyz on Monday, 11.19.07 @ 17:12pm | #37825
hi,
How can we debug the program in real time projects, with example?
Regards,
Ramana
Posted by ramana on Saturday, 11.10.07 @ 23:07pm | #36860
Hai..
Pls send latest interview questions(j2ee) throw my MailID
Regards
Jagathese
Posted by Jagathese on Monday, 10.15.07 @ 14:32pm | #33849
why do we use struts if there are servlete and jsp.
Posted by rahul on Wednesday, 10.10.07 @ 15:26pm | #33007
why do we use struts if there are servlete and jsp.
Posted by pranathi on Saturday, 07.21.07 @ 18:27pm | #21696
Do we actually have to action class in struts.
If i don't want to create myOwnAction class then
do we have any other way so the i don't need to write myOwnAction class.
If it is then plz do let me know the source code also
Posted by Ajeet Singh Sisodiya on Tuesday, 07.10.07 @ 12:07pm | #21011
Plz give a exmple,how to use taglibs.
Posted by Ravindra on Wednesday, 06.20.07 @ 16:19pm | #19786