Does anyone know what is the recommended way to configure a datasource? Should you configure it in your app server (Tomcat, WebLogic) and access though JNDI or just use Spring's DriverManagerDataSource and configure the data source in your Spring config file?
What are the differences between the two? I was wondering if only the app server method would utilize connection pooling.
Thanks


Reply With Quote