From 0bd7433cc8d7f78f0710582749ccea37ab10e555 Mon Sep 17 00:00:00 2001 From: Michael Schnell Date: Sat, 4 Sep 2021 15:52:59 +0200 Subject: [PATCH] spring.http.converters changed to spring.mvc.converters See https://docs.across.dev/across-site/production/migration/platform-5-0-to-5-1.html#_deprecated_spring_boot_properties --- spring-boot/command/src/main/resources/application.properties | 2 +- spring-boot/query/src/main/resources/application.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot/command/src/main/resources/application.properties b/spring-boot/command/src/main/resources/application.properties index 7d37a2a..d816754 100644 --- a/spring-boot/command/src/main/resources/application.properties +++ b/spring-boot/command/src/main/resources/application.properties @@ -1,3 +1,3 @@ server.port = 8081 -spring.http.converters.preferred-json-mapper=jsonb +spring.mvc.converters.preferred-json-mapper=jsonb diff --git a/spring-boot/query/src/main/resources/application.properties b/spring-boot/query/src/main/resources/application.properties index 7ba5af8..b4222ef 100644 --- a/spring-boot/query/src/main/resources/application.properties +++ b/spring-boot/query/src/main/resources/application.properties @@ -9,5 +9,5 @@ spring.jpa.show-sql=false spring.h2.console.enabled=false server.port = 8080 -spring.http.converters.preferred-json-mapper=jsonb +spring.mvc.converters.preferred-json-mapper=jsonb spring.jpa.open-in-view=false