@@ -416,6 +416,10 @@ protected JsonSerializer<Object> constructBeanOrAddOnSerializer(SerializerProvid
416
416
}
417
417
418
418
// Any properties to suppress?
419
+
420
+ // 10-Dec-2021, tatu: [databind#3305] Some JDK types need special help
421
+ // (initially, `CharSequence` with its `isEmpty()` default impl)
422
+ props = filterUnwantedJDKProperties (config , beanDesc , props );
419
423
props = filterBeanProperties (config , beanDesc , props );
420
424
421
425
// Need to allow reordering of properties to serialize
@@ -636,7 +640,7 @@ protected List<BeanPropertyWriter> findBeanProperties(SerializerProvider prov,
636
640
/* Overridable non-public methods for manipulating bean properties
637
641
/**********************************************************
638
642
*/
639
-
643
+
640
644
/**
641
645
* Overridable method that can filter out properties. Default implementation
642
646
* checks annotations class may have.
@@ -672,6 +676,36 @@ protected List<BeanPropertyWriter> filterBeanProperties(SerializationConfig conf
672
676
return props ;
673
677
}
674
678
679
+ /**
680
+ * Overridable method used to filter out specifically problematic JDK provided
681
+ * properties.
682
+ *<p>
683
+ * See issue <a href="https://github.com/FasterXML/jackson-databind/issues/3305">
684
+ * databind-3305</a> for details.
685
+ *
686
+ * @since 2.13.1
687
+ */
688
+ protected List <BeanPropertyWriter > filterUnwantedJDKProperties (SerializationConfig config ,
689
+ BeanDescription beanDesc , List <BeanPropertyWriter > props )
690
+ {
691
+ // First, only consider something that implement `CharSequence`
692
+ if (beanDesc .getType ().isTypeOrSubTypeOf (CharSequence .class )) {
693
+ Iterator <BeanPropertyWriter > it = props .iterator ();
694
+ while (it .hasNext ()) {
695
+ BeanPropertyWriter prop = it .next ();
696
+ // And only remove property induced by `isEmpty()` method declared
697
+ // in `CharSequence` (default implementation)
698
+ AnnotatedMember m = prop .getMember ();
699
+ if ((m instanceof AnnotatedMethod )
700
+ && "isEmpty" .equals (m .getName ())
701
+ && m .getDeclaringClass () == CharSequence .class ) {
702
+ it .remove ();
703
+ }
704
+ }
705
+ }
706
+ return props ;
707
+ }
708
+
675
709
/**
676
710
* Method called to handle view information for constructed serializer,
677
711
* based on bean property writers.
0 commit comments