From d175d42e2020c14be45732c872f260e3f93e1020 Mon Sep 17 00:00:00 2001 From: Christoph Beger Date: Fri, 13 Feb 2026 15:05:15 +0100 Subject: [PATCH 1/3] Remove dialect specification because this is not needed --- src/main/resources/application.yml | 1 - src/test/resources/application.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 2d2692fc..c000b796 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -34,7 +34,6 @@ spring: open-in-view: false properties: hibernate: - dialect: org.hibernate.dialect.PostgreSQLDialect # Reverts to the behavior of Hibernate 5.3+ id: "[db_structure_naming_strategy]": legacy diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml index cf25585b..f6754754 100644 --- a/src/test/resources/application.yml +++ b/src/test/resources/application.yml @@ -16,7 +16,6 @@ spring: open-in-view: false properties: hibernate: - dialect: org.hibernate.dialect.PostgreSQLDialect # Reverts to the behavior of Hibernate 5.3+ id: "[db_structure_naming_strategy]": legacy From 009e9c6846a42a1148fe6ffc86b976da82af4e11 Mon Sep 17 00:00:00 2001 From: Christoph Beger Date: Fri, 13 Feb 2026 15:09:02 +0100 Subject: [PATCH 2/3] Update log level for hibernate incubating messages --- src/main/resources/application.yml | 3 +++ src/test/resources/application.yml | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index c000b796..03f5a59b 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -19,6 +19,9 @@ logging: springframework: data: neo4j: ERROR + hibernate: + orm: + incubating: ERROR spring: max-batch-size: ${MAX_BATCH_SIZE:100} diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml index f6754754..f9a044c0 100644 --- a/src/test/resources/application.yml +++ b/src/test/resources/application.yml @@ -6,6 +6,10 @@ server: logging: level: root: INFO + org: + hibernate: + orm: + incubating: ERROR spring: neo4j: From 3ecdd48faa09e8214c89e6953a39ccef512afad1 Mon Sep 17 00:00:00 2001 From: Christoph Beger Date: Fri, 13 Feb 2026 16:03:16 +0100 Subject: [PATCH 3/3] Disable warning about custom authentication provider --- src/main/resources/application.yml | 6 ++++++ src/test/resources/application.yml | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 03f5a59b..ee63a653 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -19,6 +19,12 @@ logging: springframework: data: neo4j: ERROR + security: + config: + annotation: + authentication: + configuration: + InitializeUserDetailsBeanManagerConfigurer: ERROR hibernate: orm: incubating: ERROR diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml index f9a044c0..ef23ad95 100644 --- a/src/test/resources/application.yml +++ b/src/test/resources/application.yml @@ -7,6 +7,13 @@ logging: level: root: INFO org: + springframework: + security: + config: + annotation: + authentication: + configuration: + InitializeUserDetailsBeanManagerConfigurer: ERROR hibernate: orm: incubating: ERROR