We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JsonParser parser = jsonFactory.createParser(new StringReader("\"2023-01-23\"")); JsonToken token = parser.nextToken(); assertEquals(JsonToken.VALUE_STRING, token); DateMidnight dm = type.jsonRead(parser); String iso = type.toIsoFormat(dm); assertEquals("2023-01-23", iso);
org.opentest4j.AssertionFailedError: Expected :2023-01-23 Actual :2023-01-23T00:00:00.000+13:00
As per https://github.com/ebean-orm/ebean/pull/2942/files
The text was updated successfully, but these errors were encountered:
#2967 - [ebean-joda] Joda JSON ISO8601 format for DateMidnight includ…
b622d85
…es timezone
rbygrave
No branches or pull requests
Steps to reproduce
As per https://github.com/ebean-orm/ebean/pull/2942/files
The text was updated successfully, but these errors were encountered: