1、缘由
Swagger是一个根据代码注解生成接口文档的工具,减少和前端之间的沟通,前端同学看着文档就可以开发了,提升了效率,之前很少写swagger,这次自己动手写,还是有点麻烦,不怎么懂,记录下,避免下次继续踩坑
2、入门
2.1、加入依赖
新建一个springboo项目,一路next就好,这里使用的maven
pom.xml中加入配置文章来源:https://www.toymoban.com/news/detail-447443.html
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
注:第一次用,直接选用新版的,不知道好在哪文章来源地址https://www.toymoban.com/news/detail-447443.html
2.2、配置类
package com.example.webdemo.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.Doc
到了这里,关于【Springboot系列】Springboot整合Swagger3不简单的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!