-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Spring Boot 2.7 → 3.3 & Other Java libs
* Spring Boot - `@Qualified` `TransactionManagers` for all DBs * Spring Batch 1. Updated Spring Batch config: Map based `JobRepository` is deprecated → HSQLDB used as the repo. 2. Migrated ItemWriters to use the `Chunk<>` API. 3. Migrated Repositiories to use `Iterable` as input type, so that Chunk<> Instanses can be directly passed in, without having to perform `toList()` transaformation. 4. Change `Instant` to `LocalDateTime` on `JobStatus`. 5. Swap Repo batch-insert 0-insert guard order: Before: `if (list.isEmpty()) { return; } for-loop` Now: `for-loop; if (batch.size() > 0) { execute() }` This is needed because if `List` → `Iterable` change of point 3. * jOOQ - Disabled type generation for new spatial type support → Continue using the current Binding-class. - DateRange: Newer version of jOOQ do not work with org.immutable types → Replaced `DateRange` org.immutable implementation, with java Record. - Fix config to use `<binding>` instead of `<converter>`. * Maven & other libs - Guava: 33.0.0 → 33.1.0 - vavr: 0.10.3 → 0.10.4 - immutables: 2.10.0 → 2.10.1 - geotools: 29.1 → 31.1 - wiremock: 2.27.2 → 3.6.0 And switch to -standalone version as to not have conflicting Netty versions with Spring. - HSQLDB: Added version 2.7.3 - Maven plugins: - Compiler: 3.11.0 → 3.13.0 - Properties: 1.0.0 → 1.2.0 - Enforcer: 3.0.0 → 3.5.0 - Enforced Maven version to be the latest Maven 3 version 3.6.3 - BuildHelper: 3.2.0 → 3.6.0
- Loading branch information
1 parent
e4b026c
commit 0510dba
Showing
235 changed files
with
13,767 additions
and
12,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 12 additions & 2 deletions
14
src/main/generated-sources/jooq/fi/hsl/jore/importer/jooq/DefaultCatalog.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
35 changes: 23 additions & 12 deletions
35
...-sources/jooq/fi/hsl/jore/importer/jooq/infrastructure_network/InfrastructureNetwork.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/main/generated-sources/jooq/fi/hsl/jore/importer/jooq/infrastructure_network/Keys.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.