Andrei Bastun
Andrei Bastun
JsonNullable is needed for Java API server to be able to distinguish between an explicit "null" and the field not being present in the request from the client. If the...
I did a small workaround to improve UX a bit when this happens - instead of empty page with the error, users re-directed to the root path (and since keycloak...
Even though it may turn out to be JDK issue, I think using DateTimeFormatter for parsing LocalDate is more appropriate and performance efficient (no need to create instances of SimpleDateFormat,...
yes, looks like there is incompatibility between `DateTimeFormatter` and `SimpleDateFormat` For example `SimpleDateFormat` for pattern 'yyyy-MM-dd' can parse even dates that contain time: `parse("2019-07-07 23:59:59")` while `DateTimeFormatter` is more strict...