1. 引入依赖,版本 3.0.0 只引入一个即可
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
点击并拖拽以挪动
- 配置类 SwaggerConfig
package org.fh.config;
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.oas.annotations.EnableOpenApi;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
/**
- 阐明:Swagger 接口 API 生成
- 作者:FH Admin
- from fhadmin.www.diuxie.comorg
*/
public class SwaggerConfig {
public Docket createRestApi() {return new Docket(DocumentationType.OAS_30)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("org.fh.controller")) // 为以后手游包门路
.paths(PathSelectors.any())
.build();}
private ApiInfo apiInfo() {return new ApiInfoBuilder()
.title("FH Admin Swagger3 RESTful API") // 页面题目
.version("3.0") // 版本号
.description("fhadmin.org") // 形容
.build();}
}
3.Swagger 拦挡配置
package org.fh.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
- 阐明:Swagger 拦挡手游配置
- 作者:FH Admin
- from fhadmin.org
*/
public class WebMvcConfig implements WebMvcConfigurer {
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.
addResourceHandler("/swagger-ui/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/springfox-swagger-ui/")
.resourceChain(false);
}
public void addViewControllers(ViewControllerRegistry registry) {registry.addViewController("/swagger-ui/")
.setViewName("forward:/swagger-ui/index.html");
}