Which parser is used in Struts to parse the Structconfig.xml
file.
Answer Posted / 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 |
Post New Answer View All Answers
how to get the last 10 elements using logic:iterate in struts with hiernate from database.
What are the custom tags?
What is discontinuous strut?
Why are frameworks used?
What is the need of struts?
What are the core classes of struts framework? Explain
What is http redirect?
What are the components of struts framework?
How can we work with error tags?
What validate() and reset() method does ?
What are the different kinds of actions in struts?
Which model components are supported by Struts?
What are action errors and error?
What are different ways to create Action classes in Struts2?
Can I have html form property without associated getter and setter formbean methods?