- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经添加了 ojdbc ddriver 并将依赖项包含在 pom 中,但我仍然收到标题中提到的错误。请帮忙。
之前我使用本地 postgres 数据库运行了该应用程序。现在尝试连接远程oracle db,遇到了这个问题。我已登录必要的防火墙。应用程序启动并按照 postgresdb 执行的方式执行。
当我尝试立即启动我的应用程序时,我收到以下日志 -
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-03-06 12:08:51.786 ERROR 27236 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to bind properties under '' to com.zaxxer.hikari.HikariDataSource:
Property: driverclassname
Value: oracle.jdbc.OracleDriver
Origin: "driverClassName" from property source "source"
Reason: Failed to load driver class oracle.jdbc.OracleDriver in either of HikariConfig class loader or Thread context classloader
Action:
Update your application's configuration
Process finished with exit code 1
pom文件如下
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>package</groupId>
<artifactId>QualityScore</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>QualityScore</name>
<description>Demo project in Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
应用程序属性 -
##Postgres settings
##spring.datasource.url=jdbc:postgresql:*****
##spring.datasource.username=*****
##spring.datasource.password=*****
##spring.jpa.database-platform = org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto = none
spring.jpa.hibernate.show-sql=true
# Oracle settings
spring.datasource.url=jdbc:oracle:*****
spring.datasource.username=*****
spring.datasource.password=*****
spring.datasource.driver-class=oracle.jdbc.driver.OracleDriver
# HikariCP settings
spring.datasource.hikari.connection-timeout=60000
spring.datasource.hikari.maximum-pool-size=5
#spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
最佳答案
我得到了解决方案或修复。我在 application.properties 中添加了以下属性
spring.datasource.driver-class=oracle.jdbc.driver.OracleDriver
并在项目结构的模块中显式指定驱动程序(ojdbc8)。现在可以了!!!谢谢大家的帮助!!
关于java - "to com.zaxxer.hikari.HikariDataSource:"Springboot下绑定(bind)属性失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60558921/
Exception in thread "task-2" org.springframework.jdbc.datasource.init.UncategorizedScriptException:
我试图弄清楚当前打开了多少个连接,但我似乎找不到使用 Hikari 的明显方法。 HikariPool公开该信息( getActiveConnections ),但我没有看到从 HikariDataS
我有一个类,看起来像这样: import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultS
我将在我的 WEB 应用程序中使用 HikariCP 而不是 c3p0。好像, super 棒但对我来说,HikariCP 接口(interface)中仍然存在有问题的地方。它包含两个类 - Hika
嗨,我有一个奇怪的问题,我使用 Oracle db 并拥有带有简单端点的 miroservice,该端点只有 getById,速度极快 3-15 毫秒,但整个操作花费了 250 毫秒。我深入研究我们的
我想在新项目中使用 Spring Data JPA。我基本上遵循https://spring.io/guides/gs/accessing-data-jpa/中描述的设置. 当我启动应用程序或开始单个
当我使用 HikariDataSource 启动 JBOSS AS 6.1 时出现链接错误。如何解决? 我使用 hikariCP 1.3.3: com.zaxxer Hika
我是存储过程的新手,我正在尝试通过 this stored procedure tutorial. 来创建我的第一个存储过程。 在本教程中,他们使用 EmbeddedDatabaseBuilder 对
我在(Java8 + Oauth2 + MySql + Hazelcast +没有群集的http session )组合的生产方式下遇到错误。开发模式运行正常。 Unable to register
我在将 HikariCP 与 Spring 的 JdbcTemplate 集成时遇到错误。我正在使用 Spring 3.2.2、HikariCP 2.3.8 和 sybase jconn4 版本 7.
这是我使用 HikariDatasource 的 logback 配置: com.mysql.jdbc.Driver jd
我已经添加了 ojdbc ddriver 并将依赖项包含在 pom 中,但我仍然收到标题中提到的错误。请帮忙。 之前我使用本地 postgres 数据库运行了该应用程序。现在尝试连接远程oracle
我正在尝试使用 Spring Boot(STS) 创建一个 Web 应用程序,但我得到了 通过服务器运行时出现以下错误(JBoss) 12:01:24,091 INFO [stdout] (Serv
我该如何解决这个问题?哪个是最好的选择以及如何做到这一点 设置唯一的池名 销毁之前的连接池 org.apache.catalina.core.ApplicationContext.log Initia
我正在升级到 Spring Boot 2.0.1.RELEASE,使用带有 Eclipselink 作为我的提供程序和 Liquibase 的 Spring 数据 JPA。我在尝试启动服务器时遇到以下
我已经在 tomcat-8.5 中部署了我的 spring boot 应用程序。只要部署了一个 war 实例,它就可以正常工作,但是一旦我尝试部署同一 war 文件的下一个版本(我正在尝试在 tomc
Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalin
当我尝试运行 Spring Boot 应用程序时出现以下错误。 Description: Failed to bind properties under '' to com.zaxxer.hikari
我是一名优秀的程序员,十分优秀!