ALLInterview.com :: Home Page            
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
   
 
Categories  >>  Software  >>  Java Related  >>  Java J2EE  >>  Struts
 
 


 

 
 Core Java interview questions  Core Java Interview Questions
 Advanced Java interview questions  Advanced Java Interview Questions
 Swing interview questions  Swing Interview Questions
 EJB interview questions  EJB Interview Questions
 Servlets interview questions  Servlets Interview Questions
 Struts interview questions  Struts Interview Questions
 JDBC interview questions  JDBC Interview Questions
 JMS interview questions  JMS Interview Questions
 SunOne interview questions  SunOne Interview Questions
 J2EE interview questions  J2EE Interview Questions
 Weblogic interview questions  Weblogic Interview Questions
 Websphere interview questions  Websphere Interview Questions
 Java Networking interview questions  Java Networking Interview Questions
 Java J2EE AllOther interview questions  Java J2EE AllOther Interview Questions
Question
Which parser is used in Struts to parse the Structconfig.xml
file.
 Question Submitted By :: Ramadhar Mishra
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 1
digester 
Is This Answer Correct ?    8 Yes 0 No
Shivram
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 2
I think it is DOM becoz Struts configure file follows the
tree model
 
Is This Answer Correct ?    1 Yes 4 No
Kiran
 
 
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 3
it's SAX parser we use, to parse the Struct-Config.xml file. 
Is This Answer Correct ?    10 Yes 0 No
Dasari Ravinder
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 4
just give the right answer ???????????? 
Is This Answer Correct ?    0 Yes 0 No
Gcd
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 5
The Struts Console software uses an XML parser (JDOM +
Xerces) to read in Struts config files.
 
Is This Answer Correct ?    0 Yes 2 No
Alka
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 6
am in confusion.. plz clarify.. 
Is This Answer Correct ?    0 Yes 1 No
Raja
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 7
please give exact answer. 
Is This Answer Correct ?    0 Yes 0 No
Srinivas
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 8
Xerces is the parser which struts-config.xml is parsed with 
Is This Answer Correct ?    0 Yes 2 No
Ankur
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 9
I am in confusion give me right answer. But i think it's
SAX parser
 
Is This Answer Correct ?    3 Yes 1 No
Ankit
 
  Re: Which parser is used in Struts to parse the Structconfig.xml file.
Answer
# 10
Action Servlet is parsing in to strutsconfig.xml 
Is This Answer Correct ?    0 Yes 5 No
Thulasee
 

 
 
 
Other Struts Interview Questions
 
  Question Asked @ Answers
 
is it necessary to write struts-confing.xml ,what tags are important in that xml file?  2
why do we use logic tag library in struts? Polaris1
its a ActionForm controller or model? Wipro15
What happens when Two users requests for same action class? How the threads are controlled?  4
who will run the execute method in struts? Wipro15
Hi Friends, am new to struts.I read that " you can store variables in xml file(properties file) and for future enhancements we just call properties file . Now i want to implement this , where can i call properties file to enhance my application. My question is where this properties file will be called.  1
Hi i am murali.i need a excellent answer for the question Tell me about project and project flow ? i mean it is use full to any project,it is on STRUTS  2
what is BUSINESS DELIGATE PATTERN,DAO,VO,DTO? TCS6
Can we have different controllers in one struts app? Accenture6
How to explain struts work flow TCS12
1.Which of the following can be performed using interceptors by the developer? 1. Provide pre-processing logic before invoking the action 2. Interact with the action and set the request parameter on the action 3. Provide post-processing logic after invoking the action 4. Modify the result 1, 2, 3 2, 3, 4 1, 2, 4 1, 2, 3, 4 2.Interceptors can be used for which of the following tasks? 1. Checking security and bottleneck 2. Tracing the log 3. Validating user input 4. Uploading file 1, 2, 3 2, 3, 4 1, 2, 4 1, 2, 3, 4 3.The ValueStack is made up of which of the following objects? 1. Temporary Objects 2. Model Object 3. Action Object 4. Permanent Object 1, 2, 3 2, 3, 4 1, 2, 4 1, 2, 3, 4 4.Which of the following statements are correct? Apache Struts is a Java based framework that separates the application logic from the presentation layer. Action is based on pull-MVC framework which means that the data to be displayed is pulled from the action class which is a POJO class acting as a model in the Web application. OGNL is a powerful expression language that allows you to refer and manipulate the data present on the ValueStack. Declarative architecture enables you to integrate the different components present in the Web application either using XML files or Annotations. 5.Which of the following are the examples of helpers? 1. Action Interface 2. ActionSupport Class 3. ActionImplement Interface 1, 2 2, 3 1, 3 1, 2, 3 6.The Struts 2 filter performs which of the following tasks? 1. Installation of the Action class 2. Execution of the method specified in the configuration file 3. Reading of the control string 1, 2 2, 3 1, 3 1, 2, 3 7.Which of the following value for the debug parameter displays an OGNL console to test OGNL expressions against the value stack? xml console command All of the above. 8.Which of the following are correct statements? The execute () method of the action class defines business logic implementations. ActionSupport class adds useful utilities to the class that extends it. Set of Interceptors are grouped into a stack known as Interceptor Stack. All of the above. 9.Which of the following annotation helps to set the path of the action URL? It is placed before the action class and it applies to all actions defined in the class, even if the fully qualified URLs are not supplied. @Namespace @Result @Results @ParentPackage 10.Which of the following statements are correct related to OGNL and Annotations? OGNL is an expression and binding language that is used for getting and setting the properties of the Java objects. Annotations acts as an alternative to HTML and Java properties configuration file. Action Annotations are available when the framework scans the classpath for action classes. Lifecycle callback annotations are invoked at any time during the processing of an action. 11.Which of the following are the features of the new unified Expression Language? Deferred evaluation of expression Support expressions that can set values and invoke methods Provides a pluggable API for resolving expressions All of the above. 12.By introducing the new feature by JSF, improvements have been made in which of the following areas? Set of standard converter messages Addition of requiredMessage, converterMessage, and validatorMessage attribute for input components. Displaying the error message using the input component name with the help of label attribute added to the input components All of the above. 13.Which of the following statements are correct about the 'label' attribute? In JSF 2.1, the label attribute have been introduced with the input components. The label attribute can accept literal or value expressions. The Literal or value expressions accepted by label attribute is prefixed before the components error message. All of the above. 14.Which of the following statements are correct? EL allows developers to use simple expressions to dynamically access data from JavaBeans components. EL supports only deferred evaluation. A value expression can either yield a value or set a value and can be used for both read and write. In immediate evaluation, the expression is evaluated immediately. 15.Which of the following statements are correct? Method expression invokes as arbitrary private method of an arbitrary object by passing a specified set of parameters and returning results from the calling method. JSTL is a part of Java EE 5 platform. JSF 1.2 includes a set of messages for standard converters. The requiredMessage, converterMessage, or the validatorMessage attribute of the input components are used to provide custom error messages. Wipro2
When wil use singleton class in Struts  6
 
For more Struts Interview Questions Click Here 
 
 
 
 
 


   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2012  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com