api sample

This commit is contained in:
2025-11-17 09:39:18 +09:00
parent 74e1c6bb9c
commit 7d64ee897d
29 changed files with 918 additions and 126 deletions

View File

@@ -26,8 +26,6 @@ public class WebConfig {
module.addSerializer(Point.class, new GeometrySerializer<>(Point.class));
module.addDeserializer(Point.class, new GeometryDeserializer<>(Point.class));
return Jackson2ObjectMapperBuilder.json()
.modulesToInstall(module)
.build();
return Jackson2ObjectMapperBuilder.json().modulesToInstall(module).build();
}
}