您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何解決Swagger2返回map復雜結構不能解析的問題”,在日常操作中,相信很多人在如何解決Swagger2返回map復雜結構不能解析的問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何解決Swagger2返回map復雜結構不能解析的問題”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
今天有同事用swagger2開發時,有一方法返回Map<String,List<Object>>出現無法解析錯誤。
Pom.xml引入的swagger版本如下:
<!--swagger start--> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> <version>1.5.20</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.6.1</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.6.1</version> </dependency> <!--swagger end-->
swaggerconfig沒有默認添加map的復雜結構引起的,需要手動添加。
1. 找到swaggerconfig類,在Docket方法里添加一些mapRule即可
2. 這里設計rule比較靈活,我就按標題的格式添加,其中Model.class是自定義的業務類,換成自己的即可。
docket.alternateTypeRules(AlternateTypeRules.newMapRule(String.class, List.class)); docket.alternateTypeRules(AlternateTypeRules.newMapRule(List.class, Model.class));
具體代碼如下:
@Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket createRestApi() { Docket docket = new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo()) .select() .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) .paths(PathSelectors.any()) .build(); docket.alternateTypeRules(AlternateTypeRules.newMapRule(String.class, List.class)); docket.alternateTypeRules(AlternateTypeRules.newMapRule(List.class, Model.class)); return docket; } }
如果swagger頁面請求有錯誤,swagger會無限嘗試訪問,后面重啟項目的時候,控制層會無限刷新出現日志的內容
本地的好辦,如果項目項目部署到服務器中,可能十幾分鐘產生幾個G的日志文件
解決方式:最簡單的方式——關閉請求報錯的瀏覽器
@Api(同名的問題) 因為swagger會根據tags 的名稱查找對象,有同名對象的時候,swagger的文檔就會出現問題
如果swagger的某個API下出現不屬于該API的請求,這個就是API的同名的問題,查找相同的API名稱替換即可
@ApiModel(不能使用“/”)
Errors
Hide
Resolver error at paths./v1-0/Configuration/add.post.parameters.1.schema.properties.listHotCarBrandIVO.items.$ref
Could not resolve reference because of: Could not resolve pointer: /definitions/熱門車/品牌/的IVO does not exist in document
Errors
Hide
Resolver error at definitions.Map«string,List«賣車車輛信息OVO»».additionalProperties.$ref
Could not resolve reference because of: Could not resolve pointer: /definitions/List does not exist in document
兩個解決方案:升級swagger版本號,這個是我用2.8.0報錯會報錯,網上有說升級版本可以解決,這個我沒有去試,
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.8.0</version> </dependency>
我這邊的解決方案是,將map定義在對象中,面向對象編程,而且這樣生成文檔的時候,注釋也會顯示好
2.8之前,swagger給出的類型居然是body,需要用json的格式傳這個很奇怪,
版本更新到2.8以后,路徑后面綁定的參數就是 swagger給出的類型居然是就能是param
適當的更新版本有好處
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.8.0</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.8.0</version> </dependency>
Failed to execute 'fetch' on 'Window': Failed to parse URL from http://localhost/8765undefindFailed to parse URL from http://localhost/8765undefind
我一直重啟項目 swagger沒有重現問題
后來我修改請求你方法上的api注釋,重啟就可以,可能是swagger上api沖突,關鍵是這個沒有提示,好暈;如果誰找到重現這個問題來說一下
到此,關于“如何解決Swagger2返回map復雜結構不能解析的問題”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。