我正在尝试使用 myBatis 连接到 Oracle 数据库,它给了我以下错误:
GRAVE: ERROR.nested exception is org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: Cannot create JDBC driver of class '' for connect URL 'null'
### The error may exist in com/iberdrola/persistence/dao/BusquedaDao.java (best guess)
### The error may involve com.iberdrola.persistence.dao.BusquedaDao.getResultadosBusqueda
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: Cannot create JDBC driver of class '' for connect URL 'null'
我在 tomcat server.xml 中有数据库配置
<Resource auth="Container" driverClassName="oracle.jdbc.driver.OracleDriver" maxIdle="1" maxTotal="20" maxWaitMillis="-1" name="jdbc/nombreBD" password="pass" removeAbandonedOnBorrow="true" removeAbandonedTimeout="60" type="javax.sql.DataSource" url="jdbc:oracle:thin:@//IP:PUERTO/AWDD" username="user"/>
我不明白为什么如果我添加了这些配置,它为什么会告诉我类等于“”和 url 'null'。
我不知道我可能会错过什么或我可能做错了什么。
任何缺少的信息,我添加它没有问题。
提前致谢。
我已经实现了!
我已将 server.xml 中的资源添加到 META-INF/context.xml 文件中,并且还在 tomcat / lib 的本地路径中添加了 ojdbc7.jar 连接器