当前位置: 首页 > 工具软件 > XOM > 使用案例 >

使用XMLSerializer报错java.lang.NoClassDefFoundError: nu/xom/ParentNode

缑智敏
2023-12-01

解决方案:

引入xom包;

maven仓库地址:https://mvnrepository.com/artifact/xom/xom

目前最新版本为1.2.5,遗憾的是这个包在2010年月就已经停更了。

pom.xml中添加依赖如下:

<dependency>
    <groupId>xom</groupId>
    <artifactId>xom</artifactId>
    <version>1.2.5</version>
</dependency>

 类似资料: