其他分享
首页 > 其他分享> > Swagger

Swagger

作者:互联网

Swagger

Swagger简介

前后端分离:Vue + SpringBoot

前后端分离式时代:

前后端如何交互!===》 API

前后端相对独立,松耦合,可以部署在不同的服务器

**产生问题:**前后端集成联掉,前端人员和后端人员无法做到“即使协商,尽早解决”。

**解决方案:**指定schema(计划提纲),实时更新最新API,降低集成的风险

Swagger

官网:https://swagger.io/

Spirngboot 集成 Swagger

1.新建yigeSpringBoot项目

2.导入相关依赖

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


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

3.编写Hello world 测试工程

4.配置Swagger

@Configuration
@EnableSwagger2 //开启Swagger 
public class SwaggerConfig {
}

5.启动项目,测试运行,访问 http://localhost:8080/swagger-ui.html

image-20211115214836132

配置Swagger

  1. 完善配置类
@Configuration
@EnableSwagger2
public class SwaggerConfig {

    //配置Swagger的Docket的bean实例
    @Bean
    public Docket docket(Environment environment){

        //设置要显示的Swagger环境
        Profiles profiles = Profiles.of("dev","test");
        //通过environment.acceptsProfiles判断是否处在自己设定的环境当中
        boolean b = environment.acceptsProfiles(profiles);
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .groupName("li")
                .enable(b) //是否启用Swagger ,false,则swagger不能访问(默认开启)
                .select()
                //RequestHandlerSelectors 配置要扫描接口的方式
                //basePackage:指定要扫描的包
                //any():扫描全部
                //none() 不扫描
                //withClassAnnotation() 扫描类上的注解,参数是一个注解的反射对象
                //withMethodAnnotation() 扫描方法上的注解
                .apis(RequestHandlerSelectors.basePackage("com.swagger.controller"))
                //paths() 过略路径
                .paths(PathSelectors.ant("/kuang/**"))
                .build();
    }

    //可配置多个分组
    @Bean
    public Docket docket2(Environment environment){
        
        Profiles profiles = Profiles.of("dev","test");
        boolean b = environment.acceptsProfiles(profiles);
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .groupName("王")
                .enable(b)
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.swagger.controller"))
                //paths() 过略路径
                .paths(PathSelectors.ant("/kuang/**"))
                .build();
    }

    //配置Swagger信息 = apiInfo
    private ApiInfo apiInfo(){

        //作者信息
        Contact contact = new Contact("li", "", "123.qq.com");

        return new ApiInfo(
                "li API文档",
                "Api Documentation",
                "v1.0",
                "urn:tos",
                contact,
                "Apache 2.0",
                "http://www.apache.org/licenses/LICENSE-2.0",
                new ArrayList());
    }

}

配置实例类

controller

@RestController
public class HelloController {

    @GetMapping ("/hello")
    public String hello(){
        return "hello";
    }

    //只要我们的接口中,返回值中存在实体类,他就会被扫描到Swagger
    @PostMapping("/user")
    public User user(){
        return new User();
    }

}

实体类

@ApiModel 给实体类加注释

@ApiModelProperty给实体类属性加注释

@ApiModel("用户实体类")
public class User {

    @ApiModelProperty("用户名")
    private String username;
    @ApiModelProperty("密码")
    private String password;
}

总结

  1. 可以通过Swagger给一些比较难理解的属性或者接口,增加注释信息
  2. 接口文档实时更新
  3. 可以在线测试

【注意点】: 在正式发布的时候,出于安全考虑,而且节省运行内存关闭Swagger!!!。

标签:Swagger,environment,apiInfo,new,swagger,public
来源: https://blog.csdn.net/TY_JUST/article/details/121480375