swagger ui和spring boot集成生成api文档


一、环境配置pom.xml

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>

二、创建文件夹swagger,编写对应的内容。

代码如下:

@Configuration
@EnableSwagger2
public class SwaggerConfig {

    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                // 当前包路径
                .apis(RequestHandlerSelectors.basePackage("edu.dlut.thesismanage.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("Spring Boot中使用Swagger2构建RESTful APIs")
                .description("api根地址:http://localhost:8443/")
                .version("1.0")
                .build();
    }
}

三、相关注解

1、@Api(value = "TeacherController", description = "教师相关api")

作用:用在controller类上,说明该类的作用

2、@ApiOperation("通过条件查询所有列表")

作用:用在方法上,说明方法的作用

3、 @ApiModelProperty(value = "老师ID")

作用:描述一个model的属性

四、项目访问

地址:http://localhost:8443/swagger-ui.html#/

效果如下:

API文档效果图


评论
评论
  目录