File tree 2 files changed +3
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/deser
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Project: jackson-databind
10
10
(reported by vboulaye@github)
11
11
#1628: Don't print to error stream about failure to load JDK 7 types
12
12
(reported by Villane@github)
13
+ #1680: Blacklist couple more types for deserialization
13
14
14
15
2.7.9.1 (18-Apr-2017)
15
16
Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ public class BeanDeserializerFactory
58
58
s .add ("org.springframework.beans.factory.ObjectFactory" );
59
59
s .add ("com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl" );
60
60
s .add ("org.apache.xalan.xsltc.trax.TemplatesImpl" );
61
+ // [databind#1680]: may or may not be problem, take no chance
62
+ s .add ("com.sun.rowset.JdbcRowSetImpl" );
61
63
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
62
64
}
63
65
You can’t perform that action at this time.
0 commit comments