web-dev-qa-db-ja.com

Spring BootアプリからOracleデータベースに接続しているときに、「ドライバーは接続のget / setネットワークタイムアウトをサポートしません」を修正する方法

テーブルに接続してデータを挿入しようとしました。Oracleデータベースを使用しています。コードではOracleシンドライバーojdbc14を使用しました。

2018-12-27 11:08:58.810  INFO 16548 --- [           main] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Driver does not support get/set network timeout for connections. (Oracle.jdbc.driver.T4CConnection.getNetworkTimeout()I)
2018-12-27 11:08:58.810 ERROR 16548 --- [           main] com.zaxxer.hikari.pool.PoolBase          : HikariPool-1 - Failed to execute isValid() for connection, configure connection test query (Oracle.jdbc.driver.T4CConnection.isValid(I)Z).

私は春のブーツにかなり新しく、実際にしようとしていました

このデモを行う- https://www.devglan.com/spring-jdbc/working-with-springboot-jdbctemplate

私が行った変更のみがpom.xmlとapplication.propertiesにあります。

オラクルに他に必要なものはありますか?これをどのように解決する必要がありますか?ネットでのOracleの例はすべてhibernateを使用しています。Hibernateアプローチを含める必要がありますか?前もって感謝します。


pom.xml

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <dependencies>
        <dependency>
         <groupId>com.Oracle</groupId>
            <artifactId>ojdbc14</artifactId>
            <version>10.2.0.4.0</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <!-- <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-Java</artifactId>
        </dependency> -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- HikariCP connection pool -->
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP</artifactId>
            <version>3.2.0</version>
        </dependency>

    </dependencies>

application.properties

spring.datasource.url=jdbc:Oracle:thin:@//url/service
spring.datasource.username=user
spring.datasource.password=password
spring.datasource.driver-class-name=Oracle.jdbc.driver.OracleDriver
3
juneSakura

これは、非常に古いバージョンのojdbcを使用しているためです。 Oracleデータベースに接続するには、最新バージョンのOracle JDBCドライバーを使用する必要があります。

ここの簡単なテストから:

1
Arnaud Jeansen