Spring-Boot-21-Swagger2

Spring-Boot-21-Swagger2,第1张

Spring Swagger2
  1. 这部分是用来完成动态的生成前后端的API接口文档,保证开发高效
1. pom.xml的依赖
<dependency>
    <groupId>io.springfoxgroupId>
    <artifactId>springfox-swagger2artifactId>
    <version>2.9.2version>
dependency>
<dependency>
    <groupId>io.springfoxgroupId>
    <artifactId>springfox-swagger-uiartifactId>
    <version>2.9.2version>
dependency>
1.1. 添加配置类
  1. 我们建立swaggerConfig类
@Configuration
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket customDocket() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("包名"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        Contact contact = new Contact("团队名", "www.my.com", "my@my.com");
        return new ApiInfoBuilder()
                .title("文档标题")
                .description("文档描述")
                .contact(contact)   // 联系方式
                .version("1.1.0")  // 版本
                .build();
    }
}
1.2. 使用swagger2注释方法
package ns.mental.advi.controller;


import io.swagger.annotations.*;
import ns.mental.advi.entity.UserEntity;
import ns.mental.advi.service.impl.UserServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


@RestController
@RequestMapping("/testBoot")
public class UserController {

    @Autowired
    private UserServiceImpl userService;


    @ApiOperation(value = "查询用户", response = UserEntity.class, httpMethod = "GET" ,notes = "返回一个User对象")
    @RequestMapping("getUser/{id}")
    public String GetUser(@PathVariable int id){
        return userService.SelectByID(id).toString();
    }
}
1.2.1. @Api
  1. 用于注解类,标识这个类为Swagger的资源
  2. 常用的参数有Value 和 Tags,都是说明的作用,但是value可以用Tags替代,当有多个Tags的时候会生成多个list
1.2.2. @ApiOperation()
  1. 用于注解方法
  2. 常用的参数有value(描述方法),notes(提示内容),response(返回对象),httpMethod(具体是什么请求)
1.2.3. @ApiParam()
  1. 用于方法参数等的说明,表示对参数的添加元数据,不用的话会自动检索代码中的信息
  2. name(参数名),value(参数说明),required(是否必填)
1.2.4. @ApiModel()
  1. 用于类;表示对类进行说明,用于参数用实体类接收
  2. value(表示对象名),description(描述),都可省略
1.2.5. @ApiModelProperty()
  1. 用于方法,字段; 表示对model属性的说明或者数据 *** 作更改
  2. value(字段说明),name(重写属性名字),dataType(重写属性类型),required(是否必填),example(举例说明),hidden(隐藏)
1.2.6. @ApiImplicitParam()

用于方法表示单独的请求参数

1.2.7. @ApiImplicitParams()
  1. 用于方法,包含多个 @ApiImplicitParam
  2. name(参数名字),value(参数说明),dataType(数据类型) ,paramType(参数类型) ,example(举例说明)
1.3. 查看API

http://localhost:8080/swagger-ui.html

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/922509.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存