swagger配置
Swagger作用: 自动生成javaAPI,避免开发过程中接口文档更新不及时。 Swagger 一.导入依赖: 导入依赖 <!--swagger包--><dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.2.2</version></dependency><dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.2.2</version></dependency><!--swagger包结束--> Swagger 二.Swagger首页的配置: 创建一个SwaggerConfig类,通过@Configuration托管给spring,然后通过@EnableSwagger2 注解开启Swagger,Config类大部分都是固定的,没什么改变的需要: 代码: package com.zy100.config;import org.springframework.context.annotation.Bean;import org.springframework.context