Skip to content

Commit 528c656

Browse files
committed
Fix #3305 (CharSequence serialization in JDK 15 POJO, not String)
1 parent c175996 commit 528c656

File tree

4 files changed

+47
-4
lines changed

4 files changed

+47
-4
lines changed

release-notes/CREDITS-2.x

+8-2
Original file line numberDiff line numberDiff line change
@@ -1402,5 +1402,11 @@ Abishek Ravichandran (abrav9595@github)
14021402
(2.13.0)
14031403
14041404
Joel Berger (jberger@github)
1405-
* Reported #3299: Do not automatically trim trailing whitespace from `java.util.regex.Pattern` values
1406-
(2.13.0)
1405+
* Reported #3299: Do not automatically trim trailing whitespace from `java.util.regex.Pattern`
1406+
values
1407+
(2.13.1)
1408+
1409+
Sergey Chernov (seregamorph@github)
1410+
* Suggested the fix for #3305: ObjectMapper serializes `CharSequence` subtypes as POJO
1411+
instead of as String (JDK 15+)
1412+
(2.13.1)

release-notes/VERSION-2.x

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Project: jackson-databind
1111
(reported by GrozaAnton@github)
1212
#3299: Do not automatically trim trailing whitespace from `java.util.regex.Pattern` values
1313
(reported by Joel B)
14+
#3305: ObjectMapper serializes `CharSequence` subtypes as POJO instead of
15+
as String (JDK 15+)
16+
(reported by stevenupton@github; fix suggested by Sergey C)
1417
#3308: `ObjectMapper.valueToTree()` fails when
1518
`DeserializationFeature.FAIL_ON_TRAILING_TOKENS` is enabled
1619
(fix contributed by raphaelNguyen@github)

src/main/java/com/fasterxml/jackson/databind/introspect/DefaultAccessorNamingStrategy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public String findNameForIsGetter(AnnotatedMethod am, String name)
7979
return null;
8080
}
8181

82-
@Override
82+
@Override
8383
public String findNameForRegularGetter(AnnotatedMethod am, String name)
8484
{
8585
if ((_getterPrefix != null) && name.startsWith(_getterPrefix)) {

src/main/java/com/fasterxml/jackson/databind/ser/BeanSerializerFactory.java

+35-1
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,10 @@ protected JsonSerializer<Object> constructBeanOrAddOnSerializer(SerializerProvid
416416
}
417417

418418
// 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);
419423
props = filterBeanProperties(config, beanDesc, props);
420424

421425
// Need to allow reordering of properties to serialize
@@ -636,7 +640,7 @@ protected List<BeanPropertyWriter> findBeanProperties(SerializerProvider prov,
636640
/* Overridable non-public methods for manipulating bean properties
637641
/**********************************************************
638642
*/
639-
643+
640644
/**
641645
* Overridable method that can filter out properties. Default implementation
642646
* checks annotations class may have.
@@ -672,6 +676,36 @@ protected List<BeanPropertyWriter> filterBeanProperties(SerializationConfig conf
672676
return props;
673677
}
674678

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+
675709
/**
676710
* Method called to handle view information for constructed serializer,
677711
* based on bean property writers.

0 commit comments

Comments
 (0)