Spring Boot整合swagger
前言:为什么写swagger?
前端大佬要求,需要用这个框架,方便出现其他接口参数问题时,可以高效的沟通,当我修改完后端接口的时候。前端立马就知道应该怎么写了。
对我来说,工作量也没有增加很多。需要前期的一个配置,后期无论是什么接口,配上3个参数就行。有一点很方便,使用这个,我就不需要使用Postman了。节约了一个软件,美滋滋~~~
第一步,先上怎么写?
1.先在pom.xml中添加两个依赖
<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.新建swaggerConfig.java类,配置相应的信息
package com.xxx.xxx.config; //你的包名
import springfox.documentation.service.Contact;
import org.springframework.