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 |
How to build struts application in eclipse?
What is the use of web xml in struts2?
Explain about struts dispatch action?
How we can controlled duplicate form submission in struts?
when connecting with the database,if database server is down,ho can we handle this exception in struts,how can we send error message to the user?
What do you mean by actionform?
What does execandwait interceptor?
List some struts tag libraries?
What inbuilt themes are provided by struts2?
How is declarative handling of exceptions done in struts ?
State an example of struts configuration file as an action parameter for action servlet.
What is the difference between struts and spring?