Which parser is used in Struts to parse the Structconfig.xml
file.

Answers were Sorted based on User's Feedback



Which parser is used in Struts to parse the Structconfig.xml file...

Answer / dasari ravinder

it's SAX parser we use, to parse the Struct-Config.xml file.

Is This Answer Correct ?    14 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / shivram

digester

Is This Answer Correct ?    9 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / mari

Digester is used to parse struts-config.xml

http://www.onjava.com/pub/a/onjava/2002/10/23/digester.html

Is This Answer Correct ?    9 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / achutanand

SAX Parser is used to parse the xml file because basically
it is for the ActionServlet to read the xml file rather
than writing something into the struts-config xml file
just the action servlet has to read the file and construts
the module config object for the one time and load it
so as SAX Parser is basically for reading and doing some
search operation Struts uses this aproach intelligently.

Is This Answer Correct ?    8 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / sudhakar

The Digester class parser the XML document. The Digester
framework comes with 10 prepackaged "rules," which cover
most of the required tasks when unmarshalling XML (such as
creating a bean or setting a bean property), but each user
is free to define and implement his or her own rules, as
necessary.

Is This Answer Correct ?    5 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / sandeep barange

Hi, Everybody,

Actually in jakarta struts there are two parsers.
one is DOM parser and another is SAX.

1) DOM, read the whole document at a time and creats tree
like structure.

2) SAX also creates tree like structure but with event, and
Digerster is a framework which simplifies the SAX parsing
by providing Higher level Interface to SAX events.

3)DOM is easier to implement, slower and more resource-
intensive than SAX.

4) Digerter is Originally designed to parse the struts-
config.xml, later recognized that this is more useful and
moved to "jakarta commons" project.

hense Digester is the framework which is desigened to parse
the struts-config.xml file, which inturn uses SAX parser.

Is This Answer Correct ?    6 Yes 1 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / ankit

I am in confusion give me right answer. But i think it's
SAX parser

Is This Answer Correct ?    5 Yes 1 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / johnson ashish joseph

See what happens is that Struts uses the Digester to map the xml data in the struts-config.xml to java objects.
Now internally digester needs a Sax parser and it could do with either a xerces/crimson parser as both are sax parsers

Is This Answer Correct ?    3 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / gcd

just give the right answer ????????????

Is This Answer Correct ?    2 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / srinivas

please give exact answer.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Struts Interview Questions

Explain about token feature in struts?

0 Answers   Tech Mahindra,


What are the benefits of Interceptors in Struts2?

0 Answers  


In struts, how can we access java beans and their properties?

0 Answers  


How are interceptors and servlet filters different?

0 Answers  


What is Request Dispatcher and what is Request Process?

2 Answers  






multiple instances for action class is it possible

8 Answers   iFlex, ProSoft,


What is struts2 namespace?

0 Answers  


What are Struts2 core components?

0 Answers  


Who makes the struts?

0 Answers  


What is the difference between struts1 and struts2?

0 Answers  


I have 4 jsp pages .At last page we have a submit button when we click it it will store all jsps data which we provide will store into database. how we can make it possible

1 Answers   MNC,


How is token generated?

0 Answers  


Categories