欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

@EnableWebMvc引发的swagger-ui.html的灾难

程序员文章站 2022-07-10 17:30:18
1 出现的问题异常信息:org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class java.util.LinkedHashMap2 问题排查原本以为是controller的异常问题,但是发现是swagger-ui.html的页面打不开。通过查询网上资料才发现,@EnableWebMv.....

1 出现的问题

 

@EnableWebMvc引发的swagger-ui.html的灾难

@EnableWebMvc引发的swagger-ui.html的灾难

异常信息:

org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class java.util.LinkedHashMap

2 问题排查

原本以为是controller的异常问题,但是发现是swagger-ui.html的页面打不开。

 

@EnableWebMvc引发的swagger-ui.html的灾难

@EnableWebMvc引发的swagger-ui.html的灾难

通过查询网上资料才发现,@EnableWebMvc注解就是一个坑,会全部接管springboot的webMvcXConfiguer失效。删除之后就问题解决了。

 

3 解决办法

https://blog.csdn.net/qq_22608189/article/details/106757850

spring boot中慎用@EnableWebMvc:https://blog.csdn.net/alex_xfboy/article/details/88724863

 

本文地址:https://blog.csdn.net/shu616048151/article/details/110245283

相关标签: java