Create one connection pool for Oracle.

We now use one pooled `DataSource` for Oracle.

This should avoid problems with the TNS-Listener, which seems to have a problem with constantly opening and closing connections.

Closes #1815
Original pull request #1816
This commit is contained in:
Jens Schauder
2024-06-13 16:42:29 +02:00
parent 37dcade129
commit 2f1d2e81b1
5 changed files with 39 additions and 18 deletions

View File

@@ -233,6 +233,12 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${hikari.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>