'Springboot REST controller Offsetdatetime

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!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source