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 the forward action utilized for?
Explain about struts dispatch action?
What is the default suffix for struts2 action uri ?
Difference between struts and spring? Or why use spring, if you are already using struts?
What do you know about validation plugin ?
What are the different kinds of actions in struts?
Do I have to credit struts on my own website?
Explain how can we upload files in struts2 application?
Explain about logic match tag?
What is the purpose of @conversionerrorfieldvalidator annotation?
Which interceptor is responsible for file upload support?
What is the purpose of @before annotation?
How we can install struts?
When should we use SwtichAction?
Explain the components of struts?