How display data base errors on web console by using the
Struts Framework?

Answers were Sorted based on User's Feedback



How display data base errors on web console by using the Struts Framework?..

Answer / ranjith nambiar

In hibernate configuration file, hibernate.cfg.xml, with in <session-factory> put <property name="show_sql">true</property>.

Is This Answer Correct ?    1 Yes 2 No

How display data base errors on web console by using the Struts Framework?..

Answer / m gangadhar

hi,
define a base class which handles all error related
operations. get Error code from E.getErrorCode() in Catch
block and then throw that error to action class.
Example.
Error code 00001: is defined for Unique constraint
voilation. for this
catch{
if(errorCode == 00001){
throw new UniqueKeyException();
}
}
// this unique exception is userdefined exception in my
framework.

and catch this exception in your action class. and be
remember in your struts-config file action tag define
input="/ErrorPage.do" property. then only it redirects to
that page in what u defined in input tag action path.

if any thing regarding this one feel free to mail me.
Thanks a lot

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Struts Interview Questions

In which method of action class the business logic is executed?

0 Answers  


What is execute method in struts?

0 Answers  


What are struts in java?

0 Answers  


How client side validation is enabled on a jsp form?

0 Answers  


Give an example of validates method used to avoid errors.

0 Answers  


What is the difference between Jakarta Struts and Apache Struts? Which one is better to use?

0 Answers  


How do you customize ActionServlet?

3 Answers   Ness Technologies,


how will you view ur jsp page to the client by using properties file?

2 Answers   Wipro,


What is pojo in struts2?

0 Answers  


What is action class? What are the types of action class?

0 Answers  


How Struts will follow the MVC?

6 Answers   HCL,


Can we write Structs application without using Action Class directly or indirectly(extends Action class)

5 Answers  


Categories