swagger 简单使用

1.导入依赖



    io.springfox
    springfox-swagger2
    3.0.0



    io.springfox
    springfox-swagger-ui
    3.0.0


    io.springfox
    springfox-boot-starter
    3.0.0

2.创建配置类

@Configuration
@EnableSwagger2
public class SwaggerConf {
    @Bean
 public Docket petApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.tao.swagger.controller")) //指定提供接口所在的基包
 .build();
    }
    /**
 * 该套 API 说明,包含作者、简介、版本、host、服务URL
 * @return
 */
 private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("demo api 说明")
                .contact(new Contact("allen","null","[email protected]"))
                .version("0.1")
                .termsOfServiceUrl("https://segmentfault.com")
                .description("demo api")
                .build();
    }
}

注意配置类上的@EnableSwagger2注解
3.编写测试controller

@Api("hello controller 接口测试")
@Controller
public class HelloController {
    @ApiOperation("hello 接口,返回hello success")
    @GetMapping("/hello")
    public String hello(){
        return "hello success";
    }
}

打开swagger页面
http://localhost:8080/swagger-ui/index.html
swagger 简单使用_第1张图片

你可能感兴趣的:(swagger)