我在 intelliJIDEA 中使用 JDK15 工作,没有任何 Gradle、Maven 或其他。
是的,我们都知道自 JDK11 起 JAXB 已从 JDK 中移除。
所以我尝试简单地将一些库作为 jar 文件添加到项目中:
jaxb-runtime-3.0.0
jaxb-impl-3.0.0
jaxb-core-3.0.0
jaxb-api-2.4.0-b180830.03592
xmlbeans-2.6.02
activation-1.0.22
不过,我得到的只是:
javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.
在这条线上:
jaxbContext = JAXBContext.newInstance(Hamster.class);
有什么线索吗?