Skip to content

Commit

Permalink
Fix #1680
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 30, 2017
1 parent 147fb08 commit e8f043d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Project: jackson-databind
(reported by vboulaye@github)
#1628: Don't print to error stream about failure to load JDK 7 types
(reported by Villane@github)
#1680: Blacklist couple more types for deserialization

2.7.9.1 (18-Apr-2017)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ public class BeanDeserializerFactory
s.add("org.springframework.beans.factory.ObjectFactory");
s.add("com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl");
s.add("org.apache.xalan.xsltc.trax.TemplatesImpl");
// [databind#1680]: may or may not be problem, take no chance
s.add("com.sun.rowset.JdbcRowSetImpl");
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
}

Expand Down

0 comments on commit e8f043d

Please sign in to comment.