JsonMappingException (was java.lang.NullPointerException)
我一直在寻找这个问题,但没有找到任何答案,所以要么我错过了一些很明显的东西,没有人写过任何东西,要么我遇到了一个不寻常的问题。我希望这是第一个...
我正在使用第三方库 (IDMLlib) 从以 .idml 格式存储的 Adobe InDesign 文档中提取信息。内容很容易阅读并存储在“Idml”类型的对象中,其中包含我需要的所有内容。现在,我想使用 Jackson JSON 将此对象发送到 Web 客户端(浏览器)。
我遇到了2个问题:
1)对象树充满了循环引用。我通过在注释中使用Mix-ins来解决此问题
@JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class, property = "@id")
所以现在我已经准备了很多混音,如果需要的话,问题2。
2)我在序列化时不断收到新的特定于对象的错误。
--Output from testMethodsReturnsSomething--
| Failure: testMethods(package.IdmlServiceTests)
| com.fasterxml.jackson.databind.JsonMappingException: (was java.lang.NullPointerException) (through reference chain: de.fhcon.idmllib.api.elements.Idml["document"]->de.fhcon.idmllib.api.elements.Document["tags"]->de.fhcon.idmllib.api.elements.tags.Tags["xmltagList"]->java.util.ArrayList[0]->de.fhcon.idmllib.api.elements.tags.XMLTag["tagColor"]->de.fhcon.idmllib.api.elements.typedefs.InDesignUIColorType["greenValue"])
at com.fasterxml.jackson.databind.JsonMappingException.wrapWithPath(JsonMappingException.java:218)
at com.fasterxml.jackson.databind.JsonMappingException.wrapWithPath(JsonMappingException.java:183)
at com.fasterxml.jackson.databind.ser.std.StdSerializer.wrapAndThrow(StdSerializer.java:155)
at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:533)
...
我尝试过编写自定义 NullValue/NullKey 序列化程序,但这对 NullPointerException 没有帮助。
有没有我可以在混音中使用的注释来处理这个问题?
或者有没有另一种方法可以让我序列化这个对象?