Skip to content
New issue

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

Fix #1407 (@JsonFormat.pattern is ignored for java.sql.Date valued properties) #1412

Closed
wants to merge 1 commit into from

Conversation

sangpire
Copy link

Here is the fix for #1407

- Use the test pattern as 'yyy.MM.dd'. because `java.sql.Date` `toString` method returns a "yyyy-MM-dd" format.
@cowtowncoder
Copy link
Member

First of all, thank you for the PR!

Quick question does this still default to using the odd format that java.sql.Date.toString() provides? While odd, that should still happen for backwards compatibility reasons, in my opinion.

@sangpire
Copy link
Author

sangpire commented Oct 14, 2016

No.

Default to use the StdDateFormat.DATE_FORMAT_STR_ISO8601 Pattern.

The comment means that before changes,
A SqlDateSerializer instance's customFormat value are always null.
So values are serialized by java.sql.Date.toString() like the yyyy-MM-dd pattern.

If I create a test with the yyyy-MM-dd pattern like others,
that will pass without changes.

So I use the yyyy.MM.dd patters.

@cowtowncoder
Copy link
Member

@sangpire This would then be breaking change, and I don't think that is warranted. If we were starting from scratch I would agree with the change, but as things are not so much.

So: I would like behavior when there is no custom pattern specified to be the same as with 2.8.

@sangpire
Copy link
Author

Thank you for finishing.

@sangpire sangpire closed this Jan 16, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants