Skip to main content

Posts

Showing posts from March, 2020

Caused by: java.lang.ClassNotFoundException: javax.xml.bind.JAXBException

Problem : Caused by: java.lang.ClassNotFoundException: javax.xml.bind.JAXBException Add these dependencies into your pom file Solution : <dependency> <groupId> javax.xml.bind </groupId> <artifactId> jaxb-api </artifactId> <version> 2.3.0 </version> </dependency> <dependency> <groupId> com.sun.xml.bind </groupId> <artifactId> jaxb-impl </artifactId> <version> 2.3.0 </version> </dependency> <dependency> <groupId> org.glassfish.jaxb </groupId> <artifactId> jaxb-runtime </artifactId> <version> 2.3.0 </version> </dependency> <dependency> <groupId> javax.activation </groupId> <artifactId> activation </artifactId> <version> 1.1.1 </version> </dependency>