Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.2
-
Fix Version/s: 1.3
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
It looks like deserializing of following class:
static class MapSubClass extends HashMap<String,MyClass> { }
does not work as expected; instead of properly bound and typed content, deserialization works as if type was specified as Map<Object,Object>.
Same occurs with Collection types as well.
In addition, looks like @JsonDeserialize annotation is not properly (or at least completely) handled with Map/Collection types either.
Fixed, added unit tests to verify.