Swagger

这篇博客介绍了如何在SpringBoot项目中集成Swagger,实现RESTful API的在线文档自动生成和接口测试。通过引入springfox-swagger2和springfox-swagger-ui依赖,配置SwaggerConfig,并使用Docket进行详细设置,包括扫描接口、配置信息、启用Swagger以及分组管理。Swagger使得API文档与代码同步更新,方便开发者快速理解和测试接口。

Swagger

​ RestFul API 文档在线自动生成工具 --> API文档与API定义同步更新

​ 可直接运行,可以在线测试API接口

​ 支持多种语言:(JAVA、PHP…)

在项目中使用Swagger 需要 springbox

​ swagger2

SpringBoot 集成Swagger

1.新建SpringBoot-web项目

2.导入相关依赖

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>3.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>3.0.0</version>
</dependency>
<!--3.0.0版本需要额外导入-->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-boot-starter</artifactId>
            <version>3.0.0</version>
        </dependency>

3.编写工程

4.配置Swagger

​ java/config/SwaggerConfig

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

5.测试运行

访问地址:http://localhost:8080/swagger-ui/index.html

配置Swagger

Swagger的bean实例:Docket

//配置 Swaager 的 Docket 的Bean实例
    @Bean
    public Docket docket(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo());
    }


配置Swagger信息

    //配置Swagger信息

    //apiInfo
    public ApiInfo apiInfo(){

        //作者信息
        Contact contact = new Contact("rz","","");

        return new ApiInfo("SwaggerApi文档",  //文档标题
                "Swagger学习",  //描述
                "1.0",  //版本
                "urn:tos", //
                 contact,  //作者信息
                "Apache 2.0", //开源版本号 
                "http://www.apache.org/licenses/LICENSE-2.0", //
                new ArrayList()); //
    }

配置Swagger扫描接口

​ Docket.select()

@Bean
    public Docket docket(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()               .apis(RequestHandlerSelectors.basePackage("com.example.swagger.controller"))
                .paths(PathSelectors.ant("/*"))
                .build();
    }

    //配置Swagger信息

其中:

​ apis()

​ RequestHandlerSelectors配置要扫描接口的方式
​ basePackage:指定要扫描的包
​ any:扫描全部
​ none:不扫描
​ withClassAnnotation:扫描类上的注解,即withClassAnnotation(xxx.class) 只要扫到xxx,则将其归为需要的对象
​ withMethodAnntation:扫描方法上的注解

paths()过滤
PathSelectors
ant():只扫描带有xxx的接口

配置是否启动Swaager

​ enable() 是否启动,false 则不能在浏览器中访问

    @Bean
    public Docket docket(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .enable(false)
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.example.swagger.controller"))
                .build();
    }

配置文档分组

​ groupName()

@Bean
    public Docket docket(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .groupName("WOW")
                .enable(true)
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.example.swagger.controller"))
                .build();
    }

​ 配置多个文档分组

​ 配置多个Bean对象即可

@Bean
    public Docket docket1(){
        return new Docket(DocumentationType.SWAGGER_2)
                .groupName("1");
    }
    @Bean
    public Docket docket2(){
        return new Docket(DocumentationType.SWAGGER_2)
                .groupName("2");
    }
    @Bean
    public Docket docket3() {
        return new Docket(DocumentationType.SWAGGER_2)
                .groupName("3");
    }

实体类配置

​ 只要在接口,方法中返回值存在实体类,则就会被扫描到Swagger中

eg:

pojo/User

@ApiModel("用户实体类")
public class User {
    @ApiModelProperty("名字")
    String name;
    @ApiModelProperty("性别")
    int age;
}

controller

@PostMapping("/user")
    public User user(){
        return new User();
    }
### Swagger 技术概述 Swagger 是一种广泛使用的工具集,旨在帮助开发者设计、构建和记录 RESTful API。其核心组件包括 Swagger Editor、Swagger Codegen 和 Swagger UI,这些工具共同构成了一个强大的生态系统,支持从 API 文档的创建到功能测试的整个生命周期。 #### Swagger 的主要功能模块 - **Swagger Editor**: 提供了一个基于浏览器的编辑环境,允许用户通过 YAML 或 JSON 语法编写 API 定义[^1]。 - **Swagger Codegen**: 这一工具能够根据已有的 API 定义生成多种编程语言的客户端和服务端代码[^4]。 - **Swagger UI**: 自动化生成交互式的 API 文档界面,使得开发人员可以轻松查看并测试 API 功能而无需额外配置[^1]。 #### 工作机制解析 当项目引入 Swagger 支持后,在应用启动阶段会自动扫描指定路径下的控制器类(通常带有 `@RestController` 注解)。随后依据这些类及其方法上的注解信息动态生成对应的 API 文档内容[^2]。这种自动化过程极大地减少了手动维护文档的工作量,并确保了文档与实际实现之间的一致性。 #### 实际应用场景举例 下面展示如何利用 Spring Boot 结合 Swagger 创建简单的 RESTful 接口: ```java import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Api(tags = "示例接口") @RequestMapping("/example") @RestController public class ExampleController { @GetMapping("/hello") public String sayHello() { return "Hello, Swagger!"; } } ``` 上述代码片段展示了在一个典型的 Java 应用程序中集成 Swagger 所需的基本设置。通过添加必要的依赖项以及适当配置之后即可启用该特性[^3]。 ###
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值