jackson-modules-java8 icon indicating copy to clipboard operation
jackson-modules-java8 copied to clipboard

Set of support modules for Java 8 datatypes (Optionals, date/time) and features (parameter names)

Results 44 jackson-modules-java8 issues
Sort by recently updated
recently updated
newest added

Hi, The ```JavaTimeModule``` class registers bunch of deserializers that extends ```JSR310DateTimeDeserializerBase```. This class implements ```java.io.Serializable``` interface but at the same time it has a reference to ```java.time.format.DateTimeFormatter``` object which is...

3.0

This is the part of FasterXML/jackson-databind#2434 that relates to changes to the jackson-modules-java8 project.

(moved from https://github.com/FasterXML/jackson-datatype-jsr310/issues/96 by @xzer) when InstantDeserializer get a long value for OffsetDateTime, it will entering the following method: ```java protected T _fromLong(DeserializationContext context, long timestamp) { if(context.isEnabled(DeserializationFeature.READ_DATE_TIMESTAMPS_AS_NANOSECONDS)){ return fromNanoseconds.apply(new...

Hi, In our project we need to accept ISO8601 date/time strings with optional time zones, where a specific time zone is to be assumed when the time zone is omitted...

new-feature

The intention of the example below is that the bean's value is serialised as both `ownerUid` and `accountOwnerUid` and that deserialisation uses the `ownerUid` value. The example can be made...

Let start from example: public class MyDto { @JsonFormat(shape = JsonFormat.Shape.NUMBER_INT) private LocalDate dob; } This will serialized `dob` as days since epoch. I find this very confusing because all...

Currently JsonFormat.timezone overwrites the timezone used for both deserialization and serialization. I would like a way to allow Instants/DateTimes to be read in correctly as seen, but then allow timezone...

(moved from existing issue reported by @agonist) Hi, refering to this issue FasterXML/jackson-databind#718 I'd like to suggest to add support for JavaFX collections since it included in JDK8. http://docs.oracle.com/javase/8/javafx/api/javafx/beans/property/ListProperty.html http://docs.oracle.com/javase/8/javafx/api/javafx/collections/ObservableList.html...

(move from https://github.com/FasterXML/jackson-datatype-jsr310/issues/90 by @cbornet) ------ The [threetenbp](https://github.com/joschi/jackson-datatype-threetenbp) fork doesn't seem very lively and hasn't been updated since jackson 2.6.4. Could FasterXML provide its own threetenbp implementation or maintain this...

Fixes Issue : https://github.com/FasterXML/jackson-modules-java8/issues/170