how can u handle run time exceptions in struts and jsp plz
explain briefly not single word answer?
Answer Posted / m.gangadhar from sathya techno
Hi.
In Struts we can handle the run time exceptions in two ways.
1).Programmatic Approach by using try& catch Blocks in
ActionSubClass
2).declarative Approach by Using <exception> in struts-
config.xml this is two ways
a) Either handle exceptions globally by using
<global-exceptions>
<exception
key="error.message"
type="java.lanag.Exception"
path="/error.jsp"/>
</global-exceptions>
In this approach if u get exception any jsp page it
automatically goes to error.jsp and their u dispay the
errors by
using <html-errors/>
b) or u can handle the exceptions as locally i.e particular
to action class
<action-mappings>
<action
name="rf"
path="/regs"
type="RegAction"
validate="true"
input="1.jsp">
<exception
key="error.message"
type="java.lanag.Exception"
path="/error.jsp"/>
</action>
</action-mappings>
| Is This Answer Correct ? | 46 Yes | 0 No |
Post New Answer View All Answers
What is struts.devmode?
What is the purpose of plug-in tag in struct-config.xml?
Why aren’t the struts tags maintained as part of the jakarta taglibs project ?
What is the purpose of dispatcher result type?
What is the purpose of @beforeresult annotation?
What is the use of execAndWait interceptor?
How is token generated?
What does modeldriven interceptor?
Which class is the Front Controller in Struts2?
How is forward action used for integration?
Briefly tell the two kinds of form beans.
What is form bean in struts?
Where can I get a copy of struts?
What is the purpose of form-beans tag in struct-config.xml?
What is the use of resourcebundle.properties file in Struts Validation framework?