首页 > 移动平台 > 详细

整合Spring Boot 2.3.x 与Spring Cloud Hoxton SR5以上版本报错。Failed to start bean 'documentationPluginsBootstrapper';

时间:2021-05-04 23:49:38      阅读:56      评论:0      收藏:0      [点我收藏+]

在整合Spring Boot 2.3.x 与Spring Cloud Hoxton SR5以上版本时,运行微服务启动类会报Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is com.google.common.util.concurrent.ExecutionError: com.google.common.util.concurrent.ExecutionError: java.lang.NoClassDefFoundError: javax/validation/constraints/Min。

原因是在Spring Boot 2.3版本后,将validation包单独提取出来,需要单独引入该依赖。

在被引用的pom文件中加入该依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-validation</artifactId>
        </dependency>

 

整合Spring Boot 2.3.x 与Spring Cloud Hoxton SR5以上版本报错。Failed to start bean 'documentationPluginsBootstrapper';

原文:https://www.cnblogs.com/carl-66/p/14730134.html

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