How exception handling is provided in struts?
Answer Posted / sitaram
to handle the errors:
in struts project to handle the error objet by using
ActionError object and to handle the errors by using
ActionErrors object.
for suppose
ActionError ae1=new ActionError("err.one");
ActionError ae2=new ActionError("err.two");
Action Errors aes=new ActionErrors();
aes.add(ae1);
aes.add(ae2);
saveErrors(request,aes);//store the errors object in request
object
to handle exception:
1)using try and cach blocks
2)using declarative exception handling technique
to handle the exceptions by using global exceptons tag in
struts-config.xml
<global-exceptions>
<exception key="gen.err"
type="java.lang.ClassNotFoundException" path="/gen.jsp"/>
whenever that exception will be came it executes the
gen.jsp page.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Is struts action class singleton?
How many struts config file can be created in struts?
What are the differences between Struts1 and Struts2 or how Struts2 is better than Struts1?
How many struts config file in a struts application?
What is use of i18n interceptor?
What are the main classes which are used in struts application?
What does it cost to replace struts?
What is token used for?
What is the use of Struts.xml configuration file?
What is controller in struts ?
What is the purpose of @key?
What are the benefits of Interceptors in Struts2?
What are the benefits of Struts framework?
If the framework doesn’t do what I want, can I request that a feature be added?
How to use dispatchaction?