0
私はスガッガーを使用しようとしている春のブート1.5.1RELEASEアプリを持っています。私は、依存関係を追加しました:その後、春のブートとスワッガー
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.5.0'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.5.0'compile('org.springframework.boot:spring-boot-devtools')
compile("org.springframework.boot:spring-boot-starter-web:1.5.1RELEASE)
および/ Configクラス:
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2).select().apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any()).build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("My API Documentation ")
.description("Swagger API Documentation provided for your viewing pleasure")
.version("1.0")
.build();
}
}
私がGETエンドポイント
@Api(value = "/words", description = "Words API", produces = "application/json")
@RestController
@RequestMapping("/words")
public class WordsController {
@ApiOperation(value = "getAllWords", nickname = "getAllWords",
response = ResponseEntity.class, httpMethod = "GET")
@ApiResponses(value = {
@ApiResponse(code = 200, message = "Success", response = ResponseEntity.class),
@ApiResponse(code = 500, message = "Failure")
})
@RequestMapping(method = RequestMethod.GET)
@ResponseBody
public ResponseEntity getAllWords() {
...}
を持っている。しかし、私はhttp://localhost:3000/swagger-ui.html
で私のAPIにアクセスしたときに(私は私のを持っていますサーバーはポート3000で実行するように設定されています。緑色のスガーガバーのみを取得します。
私はいくつかのチュートリアルを、これをオフに構築していますが、私の闊歩ドキュメントは
Iで試してみてくださいSwaggerConfigをメインクラスに移動することで修正されていると思います。何らかの理由でこの@Configurationが取得されていません – sonoerin