标签:erro class noclass download except highlight article target 版本
问题原因:
高版本的JDK中不包含javax.xml.bind包了!
解决方法:
1,如果是maven管理依赖,则在pom.xml中加入:
<dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.0</version> </dependency>
2,也可以单独下载这个JAR包,随后在工程里添加这个JAR包就可以了!
参考:
https://blog.csdn.net/qq_32475739/article/details/82230353
https://download.csdn.net/download/a5231108/5993301
JAVA - 解决:Java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException
标签:erro class noclass download except highlight article target 版本
原文地址:https://www.cnblogs.com/sunylat/p/13339507.html