I work in intelliJIDEA with JDK15 without any Gradle, Maven or else.
Yes, we all know that JAXB is removed from JDK since JDK11.
So I tried to simply add some libs to the project as jar files:
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
Still, all I get is:
javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.
on this line:
jaxbContext = JAXBContext.newInstance(Hamster.class);
Any clue?