org.springframework.beans.factory.UnsatisfiedDependencyException:找不到Oracle驱动程序

时间:2018-10-26 10:09:00

标签: oracle spring-boot jpa gradle

我正在将SPRING BOOT ORACLE JPAGRADLE一起使用,这是一个简单的项目,但是在运行时,我得到了:

  

org.springframework.beans.factory.UnsatisfiedDependencyException:   创建名称为bean的错误   'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration':   通过构造函数参数0表示的不满足的依赖关系;   嵌套异常为   org.springframework.beans.factory.BeanCreationException:错误   创建在类路径资源中定义的名称为“ dataSource”的bean   [org / springframework / boot / autoconfigure / jdbc / DataSourceConfiguration $ Hikari.class]:   通过工厂方法实例化Bean失败;嵌套异常为   org.springframework.beans.BeanInstantiationException:失败   实例化[com.zaxxer.hikari.HikariDataSource]:工厂方法   'dataSource'引发异常;嵌套异常为   java.lang.IllegalStateException:无法加载驱动程序类:   oracle.jdbc.driver.OracleDriver

我的application.properties是:

server.port=8082 # create n drop tables, loads import.sql 
spring.jpa.hibernate.ddl-auto=create-drop 
spring.datasource.url=jdbc:oracle:thin:@//138.69.14.63:1521/drbadev 
spring.datasource.username=$$$$$$$$$$ spring.datasource.password=$$$$$$ 
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver

该怎么办?

0 个答案:

没有答案