how can u handle run time exceptions in struts and jsp plz
explain briefly not single word answer?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / gangadhar m
Hi.
In Struts we can handle the run time exceptions in two ways.
1). by using try& catch Blocks in ActionSubClass
2). by Using <exception> in struts-config.xml this is two ways
a) Either handle exceptions globally by using
<global-exceptions>
<exception-type>java.lang.Exception</exception-type>
<exception-location>1.jsp</exception-location>
</global-exceptions>
In this approach if u get exception any jsp page it
automatically goes to 1.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=""
type=""
validate="true"
input="1.jsp">
</action>
</action-mappings>
| Is This Answer Correct ? | 21 Yes | 7 No |
Explain about logic match tag?
Can u call Action class methods fro struts-config.xml file?
Where should struts xml be placed?
how to develop the submit and search operations in single jsp using struts?
How Struts internally works? For Example if we type the URL "/login.do" how the process goes internaly? How the struts-config.xml loaded?
How to carryout the validations in struts if the validator frame work cant handle the validation
How do you find the struts version being used in a project?
What is the difference between shocks and struts?
At the point, you should go for struts framework?
Describe the basic steps used to create a tiles application?
What are the core classes of the struts framework?
What is the use of Struts.xml configuration file?