Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



how can u handle run time exceptions in struts and jsp plz explain briefly not single word answer?..

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

how can u handle run time exceptions in struts and jsp plz explain briefly not single word answer?..

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

Post New Answer

More Struts Interview Questions

What is the purpose of @results annotation?

0 Answers  


What are the benefits of Struts framework?

0 Answers  


What is the need of struts?

0 Answers  


Give an example of validates method used to avoid errors.

0 Answers  


What is the difference between a Strut and a Class?

1 Answers  


How you will make available any message resources definitions file to the struts framework environment?

0 Answers  


What is Hibernate?

4 Answers  


1.can we transfer a request from one struts application to another struts application? 2. how many types of action servlets r there what r they

0 Answers   TCS,


What kind of mvc is struts 2?

0 Answers  


How can we group related actions in one group in Struts?

0 Answers  


What is the use of interceptor?

0 Answers  


What is the configuration files used in struts?

0 Answers  


Categories