BAEL-3801: Update spring-boot-rest to use latest Spring Boot version (#8740)

* BAEL-3801: Upgrade to Spring Boot 2.2.2

* BAEL-3801: Fix JacksonMarshaller

* BAEL-3801: Get rid of deprecated HATEOAS classes

* BAEL-3801: Fix H2 tables drop order

* BAEL-3801: Remove commented property from pom.xml
This commit is contained in:
kwoyke
2020-02-19 22:36:27 +01:00
committed by GitHub
parent 1ad0bfaf29
commit 059a9e6a51
7 changed files with 41 additions and 17 deletions
@@ -60,7 +60,7 @@ public final class JacksonMarshaller implements IMarshaller {
List<T> entities = null;
try {
if (clazz.equals(Foo.class)) {
entities = objectMapper.readValue(resourcesAsString, new TypeReference<List<Foo>>() {
entities = objectMapper.readValue(resourcesAsString, new TypeReference<List<T>>() {
// ...
});
} else {