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
Who makes the struts?
Describe the mvc on struts?
What is the use of interceptor?
In which method of action class the business logic is executed?
Explain about logic match tag?
What is strut action mapping?
What is the difference in using Action interface and ActionSupport class for our action classes, which one you would prefer?
Can you explain the directory structure for a struts folder in brief ?
What's mvc pattern ?
What is interceptor struts2?
Does struts include its own unit tests?
How to handle exceptions in structs?
What is apache struts used for?
What is the use of form bean in struts?
Can I have html form property without associated getter and setter formbean methods?