본문 바로가기
BackEnd FrontEnd/JAVA

Error - javax.xml.bind.JAXBException Implementation of JAXB-API has not been found on module path or classpath

by forkballpitch 2020. 1. 26.
728x90
728x90

pom.xml 에 아래 내용을 추가해준다.

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0-b170201.1204</version>
</dependency>


<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>


<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.0-b170127.1453</version>
</dependency>

728x90
728x90