Skip to content

Commit e8f043d

Browse files
committed
Fix #1680
1 parent 147fb08 commit e8f043d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff 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

1415
2.7.9.1 (18-Apr-2017)
1516

src/main/java/com/fasterxml/jackson/databind/deser/BeanDeserializerFactory.java

+2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)