首页 > 编程语言 > 详细

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

时间:2020-01-27 20:58:45      阅读:79      评论:0      收藏:0      [点我收藏+]

问题:运行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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!