码迷,mamicode.com
首页 > 编程语言 > 详细

运行springboot项目出现:Type javax.xml.bind.JAXBContext not present

时间:2020-01-27 21:57:13      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:ext   http   class   com   span   type   href   pen   end   

问题:运行springboot项目出现:Type javax.xml.bind.JAXBContext not present

原因

java9+版本以后,JAXB默认没有加载

 

手动添加模块到pom:

    spring boot 2.0.*版本,添加如下代码:

————————————————

<!-- jaxb模块引用 - start -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</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>
<!-- jaxb模块引用 - end -->
————————————————

转自:https://blog.csdn.net/alger_magic/article/details/83041811

 

运行springboot项目出现:Type javax.xml.bind.JAXBContext not present

标签:ext   http   class   com   span   type   href   pen   end   

原文地址:https://www.cnblogs.com/herojava/p/12236779.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!