我有一个多模块maven web应用程序,它使用hibernate。
我使用tomcat:run目标,以便在maven的嵌入式tomcat服务器上运行它。到目前为止一切正常。
但是现在我需要从hibernate.properties中的explicite jdbc配置切换到数据源。我做了以下事情:
来自
hibernate.connection.driver_class=oracle.jdbc.OracleDriver
hibernate.connection.url=jdbc:somejdbcurl
hibernate.connection.username=aUser
hibernate.connection.password=aPassword
到
hibernate.connection.datasource=java:comp/env/jdbc/datasourcename
<resource-ref> <res-ref-name>jdbc/datasourcename</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
<Context> <Resource name="jdbc/datasourcename" auth="Container" type="javax.sql.DataSource" username="aUser" password="aPassword" driverClassName="oracle.jdbc.OracleDriver" url="jdbc:somejdbcurl" maxActive="2" maxIdle="2"/> </Context>
这不起作用,这是预期的,因为我没有找到提供包含Oracle jdbc驱动程序的jar文件的方法。我期待一个ClassNotFound Exception或类似的东西,但我得到了一个
org.hibernate.exception.GenericJDBCException: Cannot open connection
在堆栈中导致根本原因:
Caused by: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
Soooooo的问题是:
答案 0 :(得分:11)
您需要在插件声明中添加JDBC驱动程序:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
...
</configuration>
<dependencies>
<dependency>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
</dependency>
</dependencies>
</plugin>
顺便说一句,contextFile
的默认值为src/main/webapp/META-INF/context.xml
。