Springboot集成Swagger

一、swagger概述

        swagger是一套基于OpenAPI规范构建的开源工具,使用RestApi
        1、代码变,文档变
        2、跨语言,支持多种语言
        3、swagger-ui 呈现出来的是一份可交互式的API文档,可以直接在文档页面尝试API的调用
        4、可以将文档规范导入相关工具(postman、soapui),这些工具将会为我们自动地创建自动化测试

二、在公共模块common下配置swagger

  1、在common模块下pom.xml文件添加依赖

   <!--swagger-->

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

  2、在common模块下创建SwaggerConfiguration.java

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

/**
 * @Author 郝南过
 * @Date 2022/11/7 14:06
 * @Version 1.0
 */
@Configuration
@EnableSwagger2
public class SwaggerConfiguration {
    private static ApiInfo DEFAULT = null;
    @Bean
    public Docket docket(){
        return new Docket(DocumentationType.SWAGGER_2);
    }
}

三、在主模块中引入common的swagger 

        1.在主模块pom文件中添加代码引入common

<!-- 引入 common 模块 -->
<dependency>
    <groupId>com.hng</groupId>
    <artifactId>common</artifactId>
    <version>0.0.1-SNAPSHOT</version>
</dependency>

        2.在主模块启动类上添加@ComponentScan自动扫描

        @ComponentScan(basePackages = {"com.hng"})

        3、启动项目运行

               启动项目后在浏览器中访问:http://localhost:8080/swagger-ui.html                                           

  【注:】

        如果启动报如下错误,请在application.properties中添加:

        spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER

        该报错原因是由于SpringBoot版本和Swagger版本不兼容导致的。

        

四、配置swagger(修改common模块下新建的SwaggerConfiguration

     1、配置首页描述、接口过滤、环境、分组等

package com.hng.swagger;

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.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;

/**
 * @Author 郝南过
 * @Date 2023/11/3 14:38
 * @Version 1.0
 */
@Configuration
@EnableSwagger2
public class SwaggerConfiguration {
    private static ApiInfo DEFAULT = null;

    @Bean
    public Docket docket_hng(Environment environment) {
        Contact DEFAULT_CONTACT = new Contact("郝南过", "https://blog.csdn.net/shaogaiyue9745602?type=blog", "1098676829@qq.com");
        DEFAULT = new ApiInfo(
                "server-接口",
                "Api Documentation",
                "V-1.0",
                "https://blog.csdn.net/shaogaiyue9745602?type=blog",
                DEFAULT_CONTACT,
                "Apache 2.0",
                "http://www.apache.org/licenses/LICENSE-2.0",
                new ArrayList());
        Profiles profiles = Profiles.of("dev");//设置在那个环境下显示swagger
        boolean b = environment.acceptsProfiles(profiles);//获得项目的环境
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(DEFAULT)
                .groupName("郝南过")
                .enable(b) //配置swagger是否开启,如果为false则关闭swagger,默认为true
                .select()
//                .apis(RequestHandlerSelectors.basePackage("com.hng.example.controller.controller"))//按照包名扫描
//                .apis(RequestHandlerSelectors.any())  //全部扫面
//                .apis(RequestHandlerSelectors.none()) //不扫面
//                .paths(PathSelectors.ant("controller"))//过滤指定包下的接口
                .build();
    }
    
}

         上述配置文件中引入了Profiles配置文件,通过不同的配置文件控制swagger只在开发环境显示,如不需要此步骤可直接删除 Profiles profiles = Profiles.of("dev");//设置在那个环境下显示swagger boolean b = environment.acceptsProfiles(profiles);//获得项目的环境 这俩行代码,并修改.enable(b).enable(true)即可。

2、开发环境文件配置,在主模块resources下创建application.properties,application-dev.properties(开发环境),application-pro.properties(正式环境)三个文件。

application.properties中通过 spring.profiles.active=dev 确定哪个环境的配置文件生效

application.properties

spring.profiles.active=dev

#解决SpringBoot版本和Swagger版本不兼容导致的报错
spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER

application-dev.properties

#是否开启 swagger-ui
swagger.enabled=true

application-pro.properties

#是否开启 swagger-ui
swagger.enabled=false

 3、启动项目,访问 http://localhost:8080/swagger-ui.html

        根据需要自行配置描述说明,或者去除。 

 五、Swagger替换UI

 在pom.xml文件中添加新的ui,然后启动访问新地址http://localhost:8080/doc.html即可

    <dependency>

    <groupId>com.github.xiaoymin</groupId>
    <artifactId>knife4j-spring-ui</artifactId>
    <version>3.0.3</version>
</dependency>

 六、配置IDEA启动项目自动打开swagger页面   

     ​​​​​​   ​​​​​​

 七.配置接口说明

Swagger注解说明
注解说明
@Api对请求类的说明
@ApiOperation方法的说明
@ApiImplicitParams方法参数的说明
@ApiImplicitParam用于指定单个参数的说明
@ApiResponses方法返回值的说明
@ApiResponse用于指定单个参数的说明
@ApiModel用在JavaBean类上,说明JavaBean的 整体用途
@ApiModelProperty用在JavaBean类的属性上面,说明此属性的的含议
API属性
注解说明
valueurl的路径值
tags如果设置这个值、value的值会被覆盖
description对api资源的描述
basePath基本路径
position如果配置多个Api 想改变显示的顺序位置
produces如, “application/json, application/xml”
consumes如, “application/json, application/xml”
protocols协议类型,如: http, https, ws, wss.
authorizations高级特性认证时配置
hidden配置为true ,将在文档中隐藏

八.注解使用

    UserController.java

package com.hng.example.controller;

import com.hng.example.entity.User;
import com.hng.example.service.UserService;
import io.swagger.annotations.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

/**
 * @Author 郝南过
 * @Date 2022/11/6 19:04
 * @Version 1.0
 */
@Api(tags="用户模块")
@RestController
public class UserController {

    @Autowired
    private UserService userService;

    @ApiOperation(value="用户查询",notes="根据id查询")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType="query", name="userId", dataType="String", required=true, value="用户Id")
    })
    @ApiResponses({
            @ApiResponse(code = 200, message = "请求成功"),
            @ApiResponse(code = 400, message = "请求参数没填好"),
            @ApiResponse(code = 404, message = "请求路径没有或页面跳转路径不对")
    })
    @ResponseBody
    @PostMapping("/hello")
    public User getUserById(@RequestParam String userId){
        return userService.selectByPrimaryKey(1);
    }
}

要在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
发出的红包

打赏作者

郝南过

感谢大佬打赏,送你一个么么哒

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

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

打赏作者

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

抵扣说明:

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

余额充值