簡體   English   中英

在spring tomcat應用程序中無法為連接URL'null創建類''的JDBC驅動程序

[英]Getting Cannot create JDBC driver of class '' for connect URL 'null in spring tomcat application

通過 jndi 獲取數據源時出現以下異常:

Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException:
     Could not get JDBC Connection; nested exception is
     org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null

Tomcat 的 server.xml :

     <Resource name="jdbc/testdb" auth="Container" type="javax.sql.DataSource"
          username="test" password="test1234"
          url="*********"
          driverClass="oracle.jdbc.driver.OracleDriver"
          initialSize="5" maxWait="5000"
          maxActive="120" maxIdle="5"
          validationQuery="select 1"
          poolPreparedStatements="true"/>    

Tomcat 的 Context.xml :

<ResourceLink name="jdbc/testdb" global="jdbc/testdb"
type="javax.sql.DataSource" />     

Spring的servlet xml:

<jee:jndi-lookup id="dataSource" jndi-name="jdbc/testdb"  resource-ref="true" />

最后的 Web.xml :

   <resource-ref>
       <description>Resource reference to database</description>
       <res-ref-name>jdbc/testdb</res-ref-name>
       <res-type>javax.sql.DataSource</res-type>
       <res-auth>Container</res-auth>
       <res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>

有人可以幫我嗎?

錯誤堆棧跟蹤:

  Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

嘗試driverClassName而不是driverClass

driverClassName="oracle.jdbc.driver.OracleDriver"

我正在使用 Eclipse STS 3.9.3、tomcat 8.5 和 Spring Boot 2.0.0.RELEASE

我整個上午都在解決這個問題。 所以,我做了很多事情來解決:

  1. 從我的 pom.xml 中刪除 jdbc 依賴。

     <!-- dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency-->
  2. 聲明資源 TOMCAT_HOME/CONF/server.xml whit factory:

     <GlobalNamingResources> ... <Resource name="jdbc/postgres_jndi" auth="Container" type="javax.sql.DataSource" driverClassName="org.postgresql.Driver" url="jdbc:postgresql://xxx.xxx.xx.xxx:5432/db" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" removeAbandonedOnBorrow="true" removeAbandonedOnMaintenance="true" timeBetweenEvictionRunsMillis="10000" removeAbandonedTimeout="60" logAbandoned="true" username="xxx" password="xxxxxx" maxTotal="20" maxIdle="10" maxWaitMillis="-1"/> ... </GlobalNamingResources>

    我意識到我正在使用 Eclipse STS。 server.xml 上的 tomcat 資源僅在我將資源聲明放入我的服務器項目的“Tomcat v8.5 Server at localhost-config”文件夾中的 server.xml 后才有效。 不適用於 server.xml 文件中的 TOMCAT_HOME/conf 文件夾。

  3. 將我的 application.yml 更改為:

     spring: datasource: platform: postgres jndi-name: java:comp/env/jdbc/postgres_jndi type: javax.sql.DataSource driver-class-name: org.postgresql.Driver jpa: hibernate: ddl-auto: validate database-platform: org.hibernate.dialect.PostgreSQL9Dialect database: POSTGRESQL show-sql: true #Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented. properties: hibernate: temp: use_jdbc_metadata_defaults: false

我認為你想念java:comp/env/你的會是這樣的:
<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/testdb" resource-ref="true" />

application.properties 將類似於:

    spring.datasource.platform= postgres
    spring.datasource.jndi-name= java:comp/env/jdbc/postgres_jndi
    spring.datasource.type= javax.sql.DataSource
    spring.datasource.driver-class-name= org.postgresql.Driver
    spring.jpa.hibernate.ddl-auto= validate
    spring.jpa.hibernatedatabase-platform= org.hibernate.dialect.PostgreSQL9Dialect
    spring.jpa.database= POSTGRESQL
    spring.jpa.show-sql= true
    spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
  1. 在 src/main/webapp/META-INF/context.xml 中定義一個 context.xml 文件,定義如下:

     <?xml version="1.0" encoding="UTF-8"?> <Context path="/myapp"> <ResourceLink global="jdbc/postgres_jndi" name="jdbc/postgres_jni" type="javax.sql.DataSource"/> </Context>
  2. 將文件 postgresql-42.2.2.jar 放入 TOMCAT_HOME/lib

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM