Springboot整合swagger2,swagger2的简单使用,Java web使用swagger2

本文详细介绍了如何在SpringBoot项目中集成Swagger,包括添加依赖、配置SwaggerConfig、标注API和类,最终实现API文档的生成与访问。通过实例演示了如何使用@Api和@ApiOperation进行接口描述。
摘要由CSDN通过智能技术生成

开发环境:IntelliJ IDEA ,win10
开发框架:springboot
开发语言:java

1、在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.在config包下创建SwaggerConfig类

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

@Configuration
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .pathMapping("/")
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.nvn.controller"))
                .paths(PathSelectors.any())
                .build().apiInfo(new ApiInfoBuilder()
                        .title("SpringBoot整合Swagger")
                        .description("SpringBoot整合Swagger,详细信息......")
                        .version("1.0")
                        .contact(new Contact("标题:","blog.csdn.net","aaa@gmail.com"))
                        .license("The Apache License")
                        .licenseUrl("http://www.baidu.com")
                        .build());
    }
}

3、访问localhost:8989/swagger-ui.html 即可,如下
在这里插入图片描述4、使用@Api(tags = “User”) 修改类描述

@Api(tags = "User")
public class UserController {
	//略...
}

5、使用@ApiOperation(value = “登录”,notes = “描述:用户登录api接口”)修改方法描述。
notes中可填写html5代码

@PostMapping("login")
@ApiOperation(value = "登录",notes = "<font color='green'>描述:</font>用户登录api接口")
public JsonResult login(String accountId, String password, HttpServletRequest request, HttpServletResponse response) {
        //略
}

6、运行后,如下图
在这里插入图片描述

本人在本站发布的所有资源文件一律免费!

评论 53
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

小星博博

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

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

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

打赏作者

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

抵扣说明:

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

余额充值