Java framework "suggestion" for persisting the results from an Oracle 9i stored procedure using Apac

Posted by chocksaway on Stack Overflow See other posts from Stack Overflow or by chocksaway
Published on 2010-03-19T10:46:46Z Indexed on 2010/03/19 10:51 UTC
Read the original article Hit count: 304

Filed under:
|
|
|
|

Hello, I am developing a Java servlet which calls an Oracle stored procedure. The stored procedure is likely to "grow" over time, and I have concerns the amount of time taken to "display the results on a web page".

While I am at the implementation stage, I would like some suggestions of a Persistence framework which will work on Apache Tomcat 5.5? I see two approaches to persisting the database results. A scheduled database query every N minutes, or something which utilises triggers.

Hibernate seems like the obvious answer, but I have never called stored procedures from Hibernate (HQL and Criteria). Is there a more appropriate framework which can be used?

Thank you.

cheers

Miles.

© Stack Overflow or respective owner

Related posts about java

Related posts about hibernate