SpringBoot controller is not able to serialize OffsetDatetime with the correct timezone.
Controller:
@PostMapping
public ResponseEntity create(@RequestBody Model model) {
// code
}
Model:
@Data
class Model {
// other fields
private OffsetDateTime created;
}
Thanks in Advance!