Which parser is used in Struts to parse the Structconfig.xml
file.
Answers were Sorted based on User's Feedback
Answer / dasari ravinder
it's SAX parser we use, to parse the Struct-Config.xml file.
| Is This Answer Correct ? | 14 Yes | 0 No |
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 |
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 |
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 |
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 |
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 |
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 |
what is difference between <bean:write> and <bean: message> tag
Explain design patterns which is used in struts?
Name the different types of actions found in struts.
What is actionservlet?
What is the purpose of @expressionvalidator annotation?
How is the Struts framworl related to MVC2?
What are the benefits of Struts framework?
How you will display validation fail errors on jsp page?
What is role of action class?
What is the purpose of execute() method?
what is the difference between page and pageContext implicit variables
What do you mean by action errors and what are the results they force?