Where should the JDBC driver JAR files reside on a Tomcat deployment with a datasource?

前端 未结 2 1584
梦如初夏
梦如初夏 2020-12-11 05:12

I have java web application using Spring, Hibernate, Tomcat7 & MySql. I use Datasource for database operations. I am not very clear about what is the standard location t

2条回答
  •  渐次进展
    2020-12-11 05:55

    That depends on who's managing the datasource.

    If you're manually constructing and managing the datasource in your own webapp like so new SomeDataSource(), etc, then the JDBC driver JAR file can be placed in webapp's /WEB-INF/lib. But if appserver happen to provide the very same JDBC driver JAR file in its own /lib already, then you could also just make use of it.

    However, if you're instructing appserver to manage the datasource all by itself and you're merely making use of it in your webapp via @Resource, etc, then the JDBC driver JAR file has to be placed in appserver's own /lib, for the very simple reason because the data source is prepared on appserver's startup completely independently from any (to be) deployed web applications. This data source is in turn shareable among all webapps. It would technically just not work if the JDBC driver JAR file is in one of the yet-to-be-deployed webapps.

提交回复
热议问题