Advertisement

Implementation of JAXB-API has not been found on module path or classpath.报错解决

阅读量:

在pom.xml中添加依赖包括javax.xml.bind的jaxb-api(版本2.3.1)和com.sun.xml.bind的jaxb-impl(版本2.3.4)。

在 pom.xml 中添加依赖:

复制代码
     <dependency>

    
         <groupId>javax.xml.bind</groupId>
    
         <artifactId>jaxb-api</artifactId>
    
         <version>2.3.1</version>
    
     </dependency>
    
  
    
     <dependency>
    
         <groupId>com.sun.xml.bind</groupId>
    
         <artifactId>jaxb-impl</artifactId>
    
         <version>2.3.4</version>
    
     </dependency>

全部评论 (0)

还没有任何评论哟~