ClassNotFoundException for javax.xml.bind.JAXBException with Spring Boot when switch to Java 9

后端 未结 6 1861
闹比i
闹比i 2020-12-14 16:00

Initialized the project using start.spring.io

Added WEB,JPA,H2 dependencies then tried to run the MainApplication.java using Jdk

6条回答
  •  感动是毒
    2020-12-14 16:30

    Or for Gradle add the dependency

    compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
    

提交回复
热议问题