Spring Fox+Swagger UIでAPI仕様書を表示した時に出る警告を消す
環境
Spring Boot 2.2.3.RELEASE - 2.2.4.RELEASE
Spring Fox 2.9.2
Kotlin 1.3.61
Gradle
環境は以下の記事のまんま
状況
こんな感じにControllerにswaggerのアノテーションをバリバリつけてAPI仕様書に必要なコメントをつらつら書いていく
package com.example.spring.boot.web.controller.spring.fox.example
import io.swagger.annotations.*
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PathVariable
import org.springframework.web.bind.annotation.RestController
@Api(
tags = ["API仕様書表示時の警告確認用API"] ,
description = "デフォのままだと警告が出る/対応の確認用API"
)
@RestController
class WarningSampleController {
@ApiOperation(
value = "サンプル文字列取得API" ,
notes = "パスパラメータから文字列を受け取ってそれを出力するサンプルAPI"
)
@ApiResponses(
ApiResponse( code = 200 , message = "サンプル文字列" , response = String::class )
)
@GetMapping( "/warning-sample/{param}")
fun getSample(
@ApiParam( value = "パスパラメータから受け取る数値" , required = true )
@PathVariable( "param" )
param : Int
) = "Hello Sample$param"
}
出力されたページもいい感じ
問題点
ページを開いた段階でエラーが出る
どうやらURLにある文字列をIntに変換できてない様子
解決策
Spring FoxのGitHubにもIssueが上がってた
https://github.com/springfox/springfox/issues/2265
Spring Foxが依存してるライブラリの問題っぽい
だから、GradleでSpring Foxのライブラリを入れるときに、
勝手に入ってくる依存ライブラリを取り除いて、別バージョンを追加する
dependencies {
implementation("io.springfox:springfox-swagger2:2.9.2") {
exclude(module = "swagger-annotations")
exclude(module = "swagger-models")
}
implementation("io.swagger:swagger-annotations:1.5.21")
implementation("io.swagger:swagger-models:1.5.21")
implementation( "io.springfox:springfox-swagger-ui:2.9.2" )
}
これで警告も出なくてスッキリ!!!
Author And Source
この問題について(Spring Fox+Swagger UIでAPI仕様書を表示した時に出る警告を消す), 我々は、より多くの情報をここで見つけました https://qiita.com/ShassBeleth/items/12a0ffd53d54abb27b9e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .