File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/deser Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Project: jackson-databind
1010 (reported by vboulaye@github)
1111#1628: Don't print to error stream about failure to load JDK 7 types
1212 (reported by Villane@github)
13+ #1680: Blacklist couple more types for deserialization
1314
14152.7.9.1 (18-Apr-2017)
1516
Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ public class BeanDeserializerFactory
5858 s .add ("org.springframework.beans.factory.ObjectFactory" );
5959 s .add ("com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl" );
6060 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" );
6163 DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
6264 }
6365
You can’t perform that action at this time.
0 commit comments