I have a Rest Controller which has a request param:
@RequestParam(required = false) @DateTimeFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") ZonedDateTime startDate
When I Post data into my controller:
startDate=2020-12-02T18:07:33.251Z
However I get a 400 Bad Request error:
2020-12-02 18:20:32.428 WARN 26384 --- [nio-2000-exec-3] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.time.ZonedDateTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@org.springframework.web.bind.annotation.RequestParam @org.springframework.format.annotation.DateTimeFormat java.time.ZonedDateTime] for value '2020-12-02T18:07:33.251Z'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value [2020-12-02T18:07:33.251Z]]
Your date-time string,
2020-12-02T18:07:33.251Z
is already in the default format used byZonedDateTime#parse
.Demo:
Output:
It means that you can specify the format,
DateTimeFormatter.ISO_ZONED_DATE_TIME
, which is the default format used byZonedDateTime#parse
. Change the annotation asor
Check the Spring documentation page to learn more about the second option.
Some other important notes:
Z
which stands forZulu
and represents date-time atUTC
(which has a zone-offset of+00:00
hours); rather, useX
for zone-offset.Demo:
Output:
Check DateTimeFormatter to learn more about it.
SimpleDateFormat
as well.Demo:
However, the date-time API of
java.util
and their formatting API,SimpleDateFormat
are outdated and error-prone. It is recommended to stop using them completely and switch to the modern date-time API.