• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Application Perfomance issue

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

In my struts based application am using Hibernate.We configured hibernate with MySql data base with JDBC Driver in hibernate-config.xml file.
If there any better perfomance if we configure hibernate with JNDI data source in the hibernate-config.xml file.Am using JBoss as a application server.
Can any one can suggest better way to hibernate configuration
How can I improve the performance of my appliaction


Thanks in advance.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I really doubt that changing the way hibernate obtains a connection will make a difference, performance-wise. The amount of time spent obtaining a connection will most likely be dwarfed by the amount of time even the most simple query takes.
Our Performance FAQ has some advice on how to tune an application the smart way.
[ July 24, 2008: Message edited by: Joe Ess ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic