使用Maven在带有数据源的嵌入式Tomcat上进行部署

时间:2010-07-20 13:00:16

标签: maven-2 tomcat datasource embeddedwebserver

我有一个多模块maven web应用程序,它使用hibernate。

我使用tomcat:run目标,以便在maven的嵌入式tomcat服务器上运行它。到目前为止一切正常。

但是现在我需要从hibernate.properties中的explicite jdbc配置切换到数据源。我做了以下事情:

  • 更改了hibernate.properties

来自

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
  • 在web.xml中我添加了
<resource-ref>
    <res-ref-name>jdbc/datasourcename</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
</resource-ref>
  • 在web.xml旁边添加了一个context.xml,其中包含以下内容:
<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的问题是:

  • 为什么tomcat不知道我希望它使用Oracle驱动程序?
  • 如何告诉tomcat有关包含驱动程序的jar文件?

1 个答案:

答案 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