UnknownSerializer.java
package tools.jackson.databind.ser.impl;
import tools.jackson.core.*;
import tools.jackson.databind.*;
import tools.jackson.databind.jsontype.TypeSerializer;
import tools.jackson.databind.ser.std.ToEmptyObjectSerializer;
import tools.jackson.databind.util.NativeImageUtil;
public class UnknownSerializer
extends ToEmptyObjectSerializer // since 2.13
{
public UnknownSerializer() {
super(Object.class);
}
public UnknownSerializer(Class<?> cls) {
super(cls);
}
@Override
public void serialize(Object value, JsonGenerator gen, SerializationContext ctxt) throws JacksonException
{
// 27-Nov-2009, tatu: As per [JACKSON-201] may or may not fail...
if (ctxt.isEnabled(SerializationFeature.FAIL_ON_EMPTY_BEANS)) {
failForEmpty(ctxt, value);
}
super.serialize(value, gen, ctxt);
}
@Override
public final void serializeWithType(Object value, JsonGenerator gen, SerializationContext ctxt,
TypeSerializer typeSer) throws JacksonException
{
if (ctxt.isEnabled(SerializationFeature.FAIL_ON_EMPTY_BEANS)) {
failForEmpty(ctxt, value);
}
super.serializeWithType(value, gen, ctxt, typeSer);
}
@Override
public boolean isEmpty(SerializationContext provider, Object value) {
return true;
}
protected void failForEmpty(SerializationContext prov, Object value)
{
final Class<?> cl = value.getClass();
if (NativeImageUtil.needsReflectionConfiguration(cl)) {
prov.reportBadDefinition(handledType(), String.format(
"No serializer found for class %s and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS). This appears to be a native image, in which case you may need to configure reflection for the class that is to be serialized",
cl.getName()));
} else {
prov.reportBadDefinition(handledType(), String.format(
"No serializer found for class %s and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)",
cl.getName()));
}
}
}