SpringBoot集成SpringDocOpenAPI替代SpringFox,2.x与3.x依赖版本不同。引入依赖后通过配置类自定义文档标题,使用@Tag、@Operation等注解标注接口,启动后访问/swagger-ui/index.html。需注意SpringSecurity放行资源及生产环境关闭文档。
SpringFox(即旧版 Swagger2)在 SpringBoot 2.6+ 和 3.x 上兼容性较差,容易报错。因此本文直接使用 SpringDoc OpenAPI 3,页面仍保持熟悉的 Swagger UI 风格。
SpringBoot 2.x 和 3.x 的依赖版本不同,下文已分别标注。
全程按步骤操作,复制后即可运行。
最终访问地址:http://localhost:你的端口/swagger-ui/index.html
长期稳定更新的攒劲资源: >>>点此立即查看<<<
org.springdoc springdoc-openapi-starter-webmvc-ui 2.5.0
org.springdoc springdoc-openapi-ui 1.7.0
引入后刷新 Maven,等待依赖下载完成即可。
新建 SwaggerOpenApiConfig.java,放在 config 包下:
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Info;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class SwaggerOpenApiConfig {
@Bean
public OpenAPI openAPI() {
return new OpenAPI()
.info(new Info()
.title("项目后端接口文档") //文档标题
.version("V1.0") //版本
.description("所有业务接口在线调试文档")); //描述
}
}
不写此配置类也能正常打开 Swagger,只是顶部没有自定义标题。
注解 |
作用 |
|
加在 Controller 类上,划分接口模块 |
|
标记单个接口 |
|
url 传参说明 |
|
实体类、DTO 字段注释 |
其实不加注解也能使用。SpringDoc 会自动扫描所有 @RestController,直接生成文档。
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/user")
@Tag(name = "用户管理模块")
public class UserController {
@GetMapping("/get")
@Operation(summary = "根据ID获取用户信息", description = "传入用户id,查询基础用户数据")
public String getUser(Long userId){
return "用户信息";
}
}
在 Swagger 文档中,当接口返回或接收对象时,字段上的 @Schema 注解能让文档清晰地展示每个字段的含义和示例值。
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "用户返回实体")
public class UserDTO {
@Schema(description = "用户唯一ID", example = "1001")
private Long userId;
@Schema(description = "用户姓名", example = "张三")
private String userName;
@Schema(description = "用户邮箱", example = "zhangsan@example.com")
private String email;
@Schema(description = "创建时间", example = "2023-10-01 12:00:00")
private String createTime;
}
关键点:
@Schema(description = "..."):用于描述整个类或单个字段的作用。
@Schema(example = "..."):提供字段的示例值,方便在 Swagger UI 中直接测试。
实体类(如 JPA Entity)的注解用法完全相同,但通常用于数据库映射。
确保导入正确的包:import io.swagger.v3.oas.annotations.media.Schema;,不要使用旧版 Swagger2 的 @ApiModel。
这样配置后,Swagger 文档中该对象的字段将显示清晰的注释和示例,可读性大幅提升。
http://localhost:8080/swagger-ui/index.html
将 8080 替换为你项目的 server.port 端口。
如果打不开页面:往下看【常见问题排查】
成功了

如果项目使用 SpringSecurity、自定义拦截器,会拦截 swagger 地址,导致页面无法加载,需要放行以下地址:
/v3/api-docs/** /swagger-ui/** /swagger-ui/index.html
@Override
public void configure(HttpSecurity http) throws Exception {
http.authorizeHttpRequests()
.requestMatchers("/v3/api-docs/**","/swagger-ui/**").permitAll()
.anyRequest().authenticated();
}
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(loginInterceptor)
.addPathPatterns("/**")
.excludePathPatterns("/v3/api-docs/**","/swagger-ui/**");
}
一般生产环境关闭接口文档,使用 @ConditionalOnProperty 修改配置类:
@Configuration
// yml配置 springdoc.enable=true 才开启
@ConditionalOnProperty(name = "springdoc.enable", havingValue = "true")
public class SwaggerOpenApiConfig {
// ...代码不变
}
application.yml
springdoc: enable: true # dev开启;prod改为false
@RestControllerpublicserver.servlet.context-path,访问地址要带上前缀核对地址!
正确:/swagger-ui/index.html
旧 swagger2 地址 /swagger-ui.html 在 SpringDoc 中失效
确认导入注解包:
import io.swagger.v3.oas.annotations.media.Schema;
不要导错旧 swagger2 的 @ApiModel
必须使用 springdoc-openapi-starter-webmvc-ui,不能使用 2.x 旧依赖
io.springfox springfox-swagger2 2.9.2 io.springfox springfox-swagger-ui 2.9.2
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableSwagger2
public class Swagger2Config {
@Bean
public Docket docket(){
return new Docket(DocumentationType.SWAGGER_2)
.select()
// 重点!修改为你的controller包路径
.apis(RequestHandlerSelectors.basePackage("com.xxx.controller"))
.build();
}
}
访问地址:http://localhost:8080/swagger-ui.html
SpringBoot 2.6 以上必须额外配置 yml 解决路径匹配报错
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
你在项目目录中找不到任何 swagger-ui 的 HTML/CSS/JS 文件。
Swagger UI 的静态文件打包在 JAR 依赖包内部。



侠游戏发布此文仅为了传递信息,不代表侠游戏网站认同其观点或证实其描述