Consider migrating joda-time to `java.time`
See original GitHub issueJoda-time was superseded by java.time
when JDK8 was released and there is a straightforward migration path.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:11 (7 by maintainers)
Top Results From Across the Web
Converting from Joda-Time to java.time
This blog post has outlined the key mappings between Joda-Time and java.time in Java SE 8. If you are writing code in Java...
Read more >migrate from Joda time library to Java time (Java 8)
The key to using java.time properly is to think about what data type is correct for each piece of data. Just a date?...
Read more >Migrating Joda-Time to java.time - Secure Code Warrior
While java.time (JSR-310) was heavily inspired by Joda-Time, it is not backwards compatible and concepts and terminologies have changed. Thats ...
Read more >Core: Migrating from joda time to java.time · Issue #27330
Objective: In order to support nanosecond resolution and to remove the joda time dependency from Elasticsearch, we need to migrate a lot of...
Read more >Java time migration guide | Elasticsearch Guide [8.5] | Elastic
Java time migration guideedit. With 7.0, Elasticsearch switched from joda time to java time for date-related parsing, formatting, and calculations. This guide ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
On #8397 I noticed that java.time can be quite a lot slower than JODA time, so this migration would be difficult to justify.
Cool, Thank you for the suggestions!