springboot配置swagger

前两天给公司项目加了个swagger, 就记录一下吧,
1.引jar包

    
        io.springfox
        springfox-swagger2
        2.8.0
    


    
    
        io.springfox
        springfox-swagger-ui
        2.8.0
    

2.config目录下添加一个SwaggerConfig.class

@Configuration
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.flow.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("Swagger接口列表")
                .description("接口")
                .version("1.1.0")
                .build();
    }

启动服务,访问: http://localhost:8080/swagger-ui.html 即可

你可能感兴趣的:(springboot配置swagger)