Initial Commit for Java.util.Date Extension Support + LocalDateTime Unit Test#124
Initial Commit for Java.util.Date Extension Support + LocalDateTime Unit Test#124Shounaks wants to merge 7 commits intoFasterXML:2.17from
Conversation
|
|
||
| public class DateValueReader extends ValueReader { | ||
| protected DateValueReader() { | ||
| super(Date.class); |
There was a problem hiding this comment.
Technically this is not JAva 8 date/time type... so probably should be in core jr-objects?
But also, it needs to support deserialization from Integer numbers (timestamp).
|
Ok, I think this could use refactoring:
EDIT: ignore this, see my next note. |
|
Oh shoot. I should have read it more carefully: this ONLY adds textual read/write for I think addition of more features would be ok but should be part of same extension (not separate one) and require configuration (by default leaving serialization as timestamp) -- it's ok to accept textual value by default tho. |
Issue: #48
Providing Support for java.util.Date, via Extensions.