For some reasons, we can\'t use java 8 right now - we\'re still stuck at java 7.
However, I\'d like to use the new JSR-310 date/time APIs
right now, using the
See this blog post.
ThreeTen-Backport is a solid backport consisting of equivalent code for the main API (though not so good for non-ISO calendar systems). To convert to Java 8 java.time
requires changing the package name, and altering some constants to be method references.
I would not advise migrating from Joda-Time to ThreeTen-Backport, but do advise migrating from Joda-Time to Java 8 java.time
.