您好,登錄后才能下訂單哦!
這篇文章主要介紹了Spring Boot 2.6.x整合Swagger啟動(dòng)失敗報(bào)錯(cuò)如何解決的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Spring Boot 2.6.x整合Swagger啟動(dòng)失敗報(bào)錯(cuò)如何解決文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。
Spring Boot 2.6.x版本引入依賴(lài) springfox-boot-starter (Swagger 3.0) 后,啟動(dòng)容器會(huì)報(bào)錯(cuò):
Failed to start bean ‘ documentationPluginsBootstrapper ‘ ; nested exception…
Springfox 假設(shè) Spring MVC 的路徑匹配策略是 ant-path-matcher,而 Spring Boot 2.6.x版本的默認(rèn)匹配策略是 path-pattern-matcher,這就造成了上面的報(bào)錯(cuò)。
在 application.properties 配置文件中修改mvc的匹配策略:
spring.mvc.pathmatch.matching-strategy=ant-path-matcher
注意:開(kāi)始的時(shí)候我用這個(gè)方法的確可以正常啟動(dòng)了,但后來(lái)我發(fā)現(xiàn)此方法在某些服務(wù)啟動(dòng)時(shí)會(huì)失效!我查了一下才發(fā)現(xiàn)這個(gè)方法治標(biāo)不治本,具體如下:
只有在不使用 Spring Boot 的執(zhí)行器時(shí),此功能才起作用。
無(wú)論配置的匹配策略如何,執(zhí)行器將始終使用基于路徑模式的解析 ( 也就是默認(rèn)策略 ) 。
如果您想在 Spring Boot 2.6及更高版本中將其與執(zhí)行器一起使用,則需要對(duì) Springfox 進(jìn)行更改。
所以解鈴還須系鈴人吶!要想徹底解決這個(gè)bug,需要修改的是 Springfox 。
這個(gè)辦法是我在 github 上找到的,一個(gè)大佬提了一個(gè)解決方案是將 Springfox 的某 .java 文件復(fù)制到自己項(xiàng)目里進(jìn)行修改,另一個(gè)大佬提了一個(gè)更好的解決方案,我覺(jué)得針不戳,在這里分享一下:
在你的項(xiàng)目里添加這個(gè) bean :(加在配置類(lèi)里就可)
@Bean public static BeanPostProcessor springfoxHandlerProviderBeanPostProcessor() { return new BeanPostProcessor() { @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { if (bean instanceof WebMvcRequestHandlerProvider || bean instanceof WebFluxRequestHandlerProvider) { customizeSpringfoxHandlerMappings(getHandlerMappings(bean)); } return bean; } private <T extends RequestMappingInfoHandlerMapping> void customizeSpringfoxHandlerMappings(List<T> mappings) { List<T> copy = mappings.stream() .filter(mapping -> mapping.getPatternParser() == null) .collect(Collectors.toList()); mappings.clear(); mappings.addAll(copy); } @SuppressWarnings("unchecked") private List<RequestMappingInfoHandlerMapping> getHandlerMappings(Object bean) { try { Field field = ReflectionUtils.findField(bean.getClass(), "handlerMappings"); field.setAccessible(true); return (List<RequestMappingInfoHandlerMapping>) field.get(bean); } catch (IllegalArgumentException | IllegalAccessException e) { throw new IllegalStateException(e); } } }; }
OK,啟動(dòng)成功!
補(bǔ)充:springboot集成swagger,啟動(dòng)時(shí)拋出如下錯(cuò)誤:
18:03:03.586 [main] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener -
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
18:03:03.601 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter -***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method linkDiscoverers in org.springframework.hateoas.config.HateoasConfiguration required a single bean, but 15 were found:
- modelBuilderPluginRegistry: defined in null
- modelPropertyBuilderPluginRegistry: defined in null
- typeNameProviderPluginRegistry: defined in null
- documentationPluginRegistry: defined in null
- apiListingBuilderPluginRegistry: defined in null
- operationBuilderPluginRegistry: defined in null
- parameterBuilderPluginRegistry: defined in null
- expandedParameterBuilderPluginRegistry: defined in null
- resourceGroupingStrategyRegistry: defined in null
- operationModelsProviderPluginRegistry: defined in null
- defaultsProviderPluginRegistry: defined in null
- pathDecoratorRegistry: defined in null
- relProviderPluginRegistry: defined by method 'relProviderPluginRegistry' in class path resource [org/springframework/hateoas/config/HateoasConfiguration.class]
- linkDiscovererRegistry: defined in null
- entityLinksPluginRegistry: defined by method 'entityLinksPluginRegistry' in class path resource [org/springframework/hateoas/config/WebMvcEntityLinksConfiguration.class]
原因:
swagger版本問(wèn)題,我本地springboot版本是2.3.1,引用swaggerb版本為2.2.2,導(dǎo)致項(xiàng)目啟動(dòng)失敗
解決方案:
更換swagger版本,我這里換成了2.9.2版本,項(xiàng)目啟動(dòng)成功
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.9.2</version> </dependency>
關(guān)于“Spring Boot 2.6.x整合Swagger啟動(dòng)失敗報(bào)錯(cuò)如何解決”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Spring Boot 2.6.x整合Swagger啟動(dòng)失敗報(bào)錯(cuò)如何解決”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。