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
Describe the mvc on struts?
How can you create your custom interceptor in struts 2?
What does i18n interceptor?
How an actionform bean is created?
Which interceptor is responsible for i18n support?
What is execute method in struts?
What is struts.devmode?
Mark the differences between html tags and strut specific html tags.
What are the struts2 configuration properties that control file uploading process?
Explain about the validation steps which have to be carried during validation of client-side address?
How action-mapping tag is used for request forwarding in struts configuration file?
What is the use of struts config xml file?
Whats the difference between the default namespace and the root namespace?
What is the difference between requestaware and servletrequestaware interface?
Why are frameworks used?