-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Remove LocalDate and LocalDateTime converters #11381
Conversation
@@ -209,8 +209,8 @@ public void register(MutableConversionService conversionService) { | |||
addTemporalToDateConverter(conversionService, ZonedDateTime.class, ZonedDateTime::toInstant); | |||
// these two are a bit icky, but required for yaml parsing compatibility | |||
// TODO Micronaut 4 Consider deletion | |||
addTemporalToDateConverter(conversionService, LocalDate.class, ld -> ld.atTime(0, 0).toInstant(ZoneOffset.UTC)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is converting LocaleDate
to Date
using UTC
and micronaut-data is using default timezone when converting back so we are getting date diff issues. I believe this should use default timezone as well.
There is also comment about removal of this conversion in Micronaut4. Can it be removed? If yes, then we can add converter needed in micronaut-data using default timezone and the issue would be fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yawkat Can we remove these conversions above, or change it to not use UTC
but default timezone? It is causing issue in micronat-data explained in the description of this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I disagree that this should be default TZ. Yes they should be removed, but using system TZ is worse.
Why does data need to convert these at all? java.sql.Date has actual well-defined conversions from and to LocalDate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
micronaut-data registers various conversions for dates and is always using timezones.
With this converter defined in micronaut-core, even if we register this in micronaut-data
conversionService.addConverter(java.sql.Date.class, LocalDate.class, date -> date.toLocalDate());
we will get wrong date when converted back.
I removed these converters from micronaut-core, hopefully nothing will break.
Quality Gate passedIssues Measures |
So the java.util.Date converter is taking priority over the java.sql.Date converter, even when using java.sql.Date? Seems like a bug in ConversionService |
No, I think this micronaut-data block is causing that
it is converting to |
Then data should convert to the right type, or add special cases where it needs different conversions from core. It should not require a core change |
Yes, I will close this PR as not needed and fix issue in micronaut-data. Thanks |
I think this is causing the issue in micronaut-data micronaut-projects/micronaut-data#2096 and is discussed here micronaut-projects/micronaut-data#3241