Springboot项目引入swagger2
前言
swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化的restful风格的web服务框架,总体目标是使客户端和文件系统作为服务器以同样的速度来更新。文件的方法、参数和模型紧密集成到服务器端的代码,允许 API 来始终保持同步。Swagger 让部署管理和使用功能强大的 API 从未如此简单。
开始
1、首先需要引入jar包,springboot版本我使用的是2.6.8,swagger2直接采用 springfox-boot-starter 3.0.0,改版本不需要再额外引入 springfox-swagger2和swagger2-3、ui。
<!-- swager2 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2、上面的tifactId>spring-boot-starter如果使用过springBootAdmin监控组件的应该都很熟悉,该jar包提供了很多关于应用监控的接口,使得开发者能够实时获取到应用运行情况,包括配置信息、实时刷新方面。这里引入是 为了解决 springboot 2.6.*与springfox3.0.0之间的不兼容而引入的。不想引入的可以考虑降低springboot版本。同时在application.yml或者bootstrap.yml中引入下面配置,同样是为了兼容性。
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
3、由于swagger3.0的版本对于自身有了较多的优化,去除了@EnableSwagger2注解,只需要添加@Configuration注解,方便应用启动时加载即可。注意.enable(true) 是需要显示配置的,默认页面不显示 ,值为false。equestHandlerSelectors.basePackage 值输入自己想要关注的控制层API范围,
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties;
import org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties;
import org.springframework.boot.actuate.autoconfigure.web.server.ManagementPortType;
import org.springframework.boot.actuate.endpoint.ExposableEndpoint;
import org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver;
import org.springframework.boot.actuate.endpoint.web.EndpointMapping;
import org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes;
import org.springframework.boot.actuate.endpoint.web.ExposableWebEndpoint;
import org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier;
import org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier;
import org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier;
import org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.util.StringUtils;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
@Configuration
public class Swagger2Config {
@Bean
public Docket docket() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.enable(true)
.select()
.apis(RequestHandlerSelectors.basePackage("cn.futures.controller"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API文档")
.description("API文档")
.version("1.0.0")
.build();
}
/**
* 增加如下配置可解决Spring Boot 2.6.x 与Swagger 3.0.0 不兼容问题
*/
@Bean
public WebMvcEndpointHandlerMapping webEndpointServletHandlerMapping(WebEndpointsSupplier webEndpointsSupplier, ServletEndpointsSupplier servletEndpointsSupplier, ControllerEndpointsSupplier controllerEndpointsSupplier, EndpointMediaTypes endpointMediaTypes, CorsEndpointProperties corsProperties, WebEndpointProperties webEndpointProperties, Environment environment) {
List<ExposableEndpoint<?>> allEndpoints = new ArrayList<>();
Collection<ExposableWebEndpoint> webEndpoints = webEndpointsSupplier.getEndpoints();
allEndpoints.addAll(webEndpoints);
allEndpoints.addAll(servletEndpointsSupplier.getEndpoints());
allEndpoints.addAll(controllerEndpointsSupplier.getEndpoints());
String basePath = webEndpointProperties.getBasePath();
EndpointMapping endpointMapping = new EndpointMapping(basePath);
boolean shouldRegisterLinksMapping = this.shouldRegisterLinksMapping(webEndpointProperties, environment, basePath);
return new WebMvcEndpointHandlerMapping(endpointMapping, webEndpoints, endpointMediaTypes, corsProperties.toCorsConfiguration(), new EndpointLinksResolver(allEndpoints, basePath), shouldRegisterLinksMapping, null);
}
private boolean shouldRegisterLinksMapping(WebEndpointProperties webEndpointProperties, Environment environment, String basePath) {
return webEndpointProperties.getDiscovery().isEnabled() && (StringUtils.hasText(basePath) || ManagementPortType.get(environment).equals(ManagementPortType.DIFFERENT));
}
4、然后启动应用,在浏览器控制台输入 http://localhost:port/swagger-ui/index.html.,即可以看到swaggerAPI调用页面:
![](file://G:\software\markText\marktextimages\2022-09-24-21-41-37-image.png?msec=1664026897227)
5、是一名小小的java程序员,一直以来都只是在观摩大佬们的博文,来充实自己,并解决一个又一个技术难题。觉着不能再继续这样下去,之后会慢慢写一些工作中的技术难点以及解决办法。最近一直在与微服务打交道,会逐渐写一写这方面的东西。最后,欢迎大家相互交流,共同成长。
标签:web,Springboot,actuate,boot,springframework,swagger2,org,引入,import From: https://www.cnblogs.com/dajiangyang/p/16726772.html