springboot集成swagger

在前后端的开发协助中往往会遇到数据统一的问题,假如说前后端操作的json数据从最开始不统一,或者说中途json数据格式变更了,如果项目没有及时作出对应的调整,那就会牵扯出一系列麻烦的问题。因此就需要有一个东西能够实时的、清晰的监控并展示后台接口数据的格式,从而在数据内容变更的最短时间内了解并化解麻烦,这就是swagger的作用。


一:新建springboot项目


在这里插入图片描述

在这里插入图片描述在这里插入图片描述在这里插入图片描述

导入依赖:

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

<!-- 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>

建立对应config文件夹,以及SwaggerConfig文件,配置swagger:

@Configuration
@EnableSwagger2
public class SwaggerConfig {
}

在这里插入图片描述启动项目,访问 http://localhost:8044/swagger-ui.html
在这里插入图片描述因为我这里已经随便建立了一个Controller并写了一个helloword接口,所以可以出现内容。
在这里插入图片描述
该页面在swagger-jar下
在这里插入图片描述



二:swagger配置自定义扫描接口


SwaggerConfig:

package com.swagger.Config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

import java.util.ArrayList;

@Configuration
@EnableSwagger2
public class SwaggerConfig {


    @Bean
    public Docket docket(){
        return  new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                //接口扫描方式
                 /**
                 * basePackage指定扫描的包
                 *withClassAnnoation 扫描类上的注解
                 *withMethodAnnoation 扫描方法上的注解
                 */
                 .apis(RequestHandlerSelectors.basePackage("com.swagger.Controller"))
                .build();
    }


    private ApiInfo apiInfo(){
        Contact contact = new Contact("deeeelete","http://localhost","deeeelete@qq.com");

        return  new ApiInfo("Deeeelete", "Api Documentation", "1.0", "urn:tos", contact, "Apache 2.0", "http://www.apache.org/licenses/LICENSE-2.0", new ArrayList());
    }
}

这样就指定扫描Controller下的接口了。
在这里插入图片描述
以及根据配置环境选择性开启swagger和一些分组配置之类的。

package com.swagger.Config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.core.env.Profiles;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

import java.util.ArrayList;

@Configuration
@EnableSwagger2
public class SwaggerConfig {


    @Bean
    public Docket docket(Environment environment){
        //当前环境
        Profiles profiles = Profiles.of("dev");
        //获取项目环境可进行判断
        boolean flag = environment.acceptsProfiles(profiles);
        return  new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .groupName("docket")
                .enable(flag) //如果不是dev环境关闭swagger
                .select()
                //接口扫描方式
                /**
                 * basePackage指定扫描的包
                 *withClassAnnoation 扫描类上的注解
                 *withMethodAnnoation 扫描方法上的注解
                 */
                .apis(RequestHandlerSelectors.basePackage("com.swagger.Controller"))
                //过滤路径
                //.paths(PathSelectors.ant("swagger/**"))
                .build();
    }

    @Bean
    public Docket docket1(Environment environment){
        //当前环境
        Profiles profiles = Profiles.of("dev");
        //获取项目环境可进行判断
        boolean flag = environment.acceptsProfiles(profiles);
        return  new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .groupName("docket1")
                .enable(flag) //如果不是dev环境关闭swagger
                .select()
                .apis(RequestHandlerSelectors.any())
                .build();
    }

    private ApiInfo apiInfo(){
        Contact contact = new Contact("deeeelete","http://localhost","deeeelete@qq.com");

        return  new ApiInfo("Deeeelete", "Api Documentation", "1.0", "urn:tos", contact, "Apache 2.0", "http://www.apache.org/licenses/LICENSE-2.0", new ArrayList());
    }
}

在这里插入图片描述

三:swagger注释


@ApiModel:给类加注释
@ApiModelProperty:给变量加注释
@ApiOperation: 给接口层方法加注释
@ApiParam:给接口方法参数加注释

通过在实体类中加注释,可以在swagger ui中更详细的展示:

package com.swagger.Pojo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

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

    @ApiModelProperty("用户id")
    private int id;

    @ApiModelProperty("用户名")
    private String name;

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

    public User() {
        super();
    }

    public User(int id, String name, String password) {
        this.id = id;
        this.name = name;
        this.password = password;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}

在这里插入图片描述
接口层:

   @PostMapping
    @ApiOperation("controller 注释")
    public User getUser(@ApiParam("用户名") String name){
        name="deeeelete";
        User user = new User();
        user.setName(name);
        return user;
    }

接口也可以在线测试:
在这里插入图片描述




资料参考:

https://www.bilibili.com/video/BV1PE411i7CV
https://swagger.io/

要在Spring Boot集成Swagger,你需要做以下几个步骤: 1. 首先,确保你使用的是Spring Boot 2.5.x及之前的版本。因为从Spring Boot 2.6.x开始,Swagger已经从Spring Boot中移除了。 2. 在你的Spring Boot应用中添加Swagger的依赖。在pom.xml文件中,添加以下依赖: ```xml <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> ``` 3. 在启动类上添加`@EnableSwagger2`注解。这个注解会启用Swagger的功能。你可以将这个注解直接添加到你的Spring Boot启动类上,或者创建一个单独的配置类,在配置类中添加这个注解。 4. 配置Swagger的相关属性。你可以在`application.properties`或`application.yml`文件中添加以下配置: ```yaml springfox.documentation.swagger.v2.path=/swagger springfox.documentation.swagger.ui.enabled=true ``` 这些配置将指定Swagger的路径和UI的启用状态。 5. 编写API文档。在你的控制器类中,使用Swagger的注解来描述你的API接口。例如,你可以使用`@Api`注解来给你的控制器类添加一个API的描述,<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [SpringBoot教程(十六) | SpringBoot集成swagger(全网最全)](https://blog.csdn.net/lsqingfeng/article/details/123678701)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Deeeelete

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值