如果我的问题无效,我很抱歉,但我想知道fasterxml(jackson-dataformat-xml)和Woodstox之间的关系。文档(https://github.com/FasterXML/jackson-dataformat-xml)建议我在使用jackson-dataformat-xml时添加Woodstox的maven依赖项。
发布于 2016-08-05 05:13:22
jackson-dataformat-xml项目不喜欢JDK提供的Stax实现(至少不喜欢JDK 8提供的实现)。
https://github.com/FasterXML/jackson-dataformat-xml/issues/32#issuecomment-236204012有更多的信息,但是如果你想使用这个库,你最终还是需要一个Stax的替代品(比如woodstox)。
https://stackoverflow.com/questions/34268150
复制相似问题