当前位置:   article > 正文

SpringBoot2.x集成springdoc-openapi-ui踩坑(JDK17)_springdoc-openapi-ui离线场景下报错

springdoc-openapi-ui离线场景下报错

报错如下:

 nested exception is java.lang.MoClassDefFoundError: javax/xml/bind/annotation/XmlRootElement

解决方案:

引入缺失的jar包

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

项目截图:

pom文件

application.yml

配置文件

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/616031
推荐阅读
相关标签
  

闽ICP备14008679号