christian wrote:
Use Hibernate, you can put your SQL queries in your Hibernate metadata (as named queries) and you can use read-only queries (projection, dynamic instantiation). It also sounds like you can make good use of caching.
OK.
For the moment, I have a correct MCD avec of the SQL vues and functions for the select (for my requestes, I not use directlty the database but of the vues). This model has been realized in delphi environnement.
Today I must realized a j2ee web application which access to this database and display some informations (read only : consult).
I use struts (for GUI) and spring component (services) and I would like to use Hibernate and if possible all my SQL vues and functions already implemeted.
My question : its a good thing or not ? Which are the performance of the Hibernate in these cases (JDBC traditional solution) ?
regards;