I am facing issues while deserializing Exception
and Throwable
instances using Jackson (version 2.2.1). Consider the following snippet:
I've had a similar issue. I'm using this code now, and it allows me to serialize and deserialize exceptions with proper types (i.e. a RuntimeException
will be a RuntimeException
again :)):
public static ObjectMapper createObjectMapper() {
ObjectMapper mapper = new ObjectMapper(null, null, new DefaultDeserializationContext.Impl(
new BeanDeserializerFactory(new DeserializerFactoryConfig()) {
private static final long serialVersionUID = 1L;
@Override
public JsonDeserializer
I'm manipulating the BeanDeserializerFactory
to make buildThrowableDeserializer
not treat Throwable
any special but just like any other Object
. Then using Mixins
to define the "special" handling of Throwable
and StackTraceElement
to my liking.