2017-02-10 29 views
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で実行するように設定されています。緑色のスガーガバーのみを取得します。 enter image description here

私はいくつかのチュートリアルを、これをオフに構築していますが、私の闊歩ドキュメントは

答えて

0

を提示されていない理由を私は見ることができませんが、ご使用の構成クラスでその問題を思え、以下闊歩構成クラス

import static com.google.common.base.Predicates.or; 
import static springfox.documentation.builders.PathSelectors.regex; 
import com.google.common.base.Predicate; 

import springfox.documentation.builders.ApiInfoBuilder; 
import springfox.documentation.service.ApiInfo; 
import springfox.documentation.spi.DocumentationType; 
import springfox.documentation.spring.web.plugins.Docket; 
import springfox.documentation.swagger2.annotations.EnableSwagger2; 

/** 
* Sample Swgger config. 
* 
* @author Eranga 
*/ 
@Configuration 
@EnableSwagger2 
public class MySwaggerConfig { 

    /** 
    * Grouping only words api end points. 
    * 
    * @return the docket 
    */ 
    @Bean 
    public Docket myApi() { 
     return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select().paths(myApiPath()).build(); 
    } 

    /** 
    * Filtering only media activity api end points. 
    * 
    * @return the predicate 
    */ 
    private Predicate<String> myApiPath() { 
     return or(regex("//words.*")); 
    } 

    /** 
    * Api info. 
    * 
    * @return the api info 
    */ 
    private ApiInfo apiInfo() { 
     return new ApiInfoBuilder().title("My API title") 
       .description(
         "my Api desc") 
       .termsOfServiceUrl("http://erangakodikara.blogspot.com/").contact("Eranga") 
       .license("Apache License Version 2.0") 
       .licenseUrl("https://github.com/springfox/springfox/blob/master/LICENSE").version("2.0").build(); 
    } 
} 
+0

Iで試してみてくださいSwaggerConfigをメインクラスに移動することで修正されていると思います。何らかの理由でこの@Configurationが取得されていません – sonoerin

関連する問題