配置springdoc swagger开关

java 复制代码
package com.iflytek.knowledge.config;

import io.swagger.v3.oas.models.ExternalDocumentation;
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Contact;
import io.swagger.v3.oas.models.info.Info;
import io.swagger.v3.oas.models.info.License;
import org.springdoc.core.GroupedOpenApi;
import org.springdoc.core.SpringDocConfigProperties;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
// 通过配置开关控制是否启用 Swagger,默认开启
@ConditionalOnProperty(name = "springdoc.api-docs.enabled", havingValue = "true", matchIfMissing = true)
public class SwaggerConfig {
    
    @Value("${springdoc.api-docs.enabled:true}")
    private Boolean enabled;
    
    @Value("${springdoc.api-docs.version:v1.0.0}")
    private String version;
    
    @Value("${springdoc.api-docs.title:知识库管理系统 API 文档}")
    private String title;
    
    @Value("${springdoc.api-docs.description:基于 Spring Boot + MyBatis-Plus + chatdoc.xfyun.cn 的知识库/文档管理接口文档}")
    private String description;

    @Bean
    public OpenAPI customOpenAPI() {
        return new OpenAPI()
                .info(new Info()
                        .title(title)
                        .description(description)
                        .version(version)
                        .contact(new Contact().name("开发团队").email("dev@example.com"))
                        .license(new License().name("Apache 2.0").url("http://springdoc.org")))
                .externalDocs(new ExternalDocumentation()
                        .description("官方文档")
                        .url("https://tttt.tttt.cn"));
    }

    @Bean
    public GroupedOpenApi publicApi() {
        return GroupedOpenApi.builder()
                .group("全部接口")
                .pathsToMatch("/**")
                .build();
    }
}

然后在 application.ymlapplication.properties 中添加配置:

YAML 格式 (application.yml)

yaml 复制代码
# SpringDoc 配置
springdoc:
  api-docs:
    enabled: true  # 是否启用 API 文档,生产环境可以设置为 false
    path: /api-docs  # API 文档路径
    version: v1.0.0  # 版本号
    title: 知识库管理系统 API 文档  # 标题
    description: 基于 Spring Boot + MyBatis-Plus + chatdoc.xfyun.cn 的知识库/文档管理接口文档  # 描述
  swagger-ui:
    enabled: true  # 是否启用 Swagger UI
    path: /swagger-ui.html  # Swagger UI 路径
    operations-sorter: method  # 接口排序方式
    tags-sorter: alpha  # 标签排序方式
  show-actuator: false  # 是否显示 Actuator 端点
  default-consumes-media-type: application/json  # 默认请求类型
  default-produces-media-type: application/json  # 默认响应类型

# 或者针对不同环境配置
# 开发环境开启
---
spring:
  config:
    activate:
      on-profile: dev
springdoc:
  api-docs:
    enabled: true
  swagger-ui:
    enabled: true

# 生产环境关闭
---
spring:
  config:
    activate:
      on-profile: prod
springdoc:
  api-docs:
    enabled: false
  swagger-ui:
    enabled: false

Properties 格式 (application.properties)

properties 复制代码
# SpringDoc 配置
springdoc.api-docs.enabled=true
springdoc.api-docs.path=/api-docs
springdoc.api-docs.version=v1.0.0
springdoc.api-docs.title=知识库管理系统 API 文档
springdoc.api-docs.description=基于 Spring Boot + MyBatis-Plus + chatdoc.xfyun.cn 的知识库/文档管理接口文档
springdoc.swagger-ui.enabled=true
springdoc.swagger-ui.path=/swagger-ui.html
springdoc.swagger-ui.operations-sorter=method
springdoc.swagger-ui.tags-sorter=alpha
springdoc.show-actuator=false
springdoc.default-consumes-media-type=application/json
springdoc.default-produces-media-type=application/json
相关推荐
雨中飘荡的记忆9 小时前
ElasticJob分布式调度从入门到实战
java·后端
考虑考虑17 小时前
JDK25模块导入声明
java·后端·java ee
_小马快跑_18 小时前
Java 的 8 大基本数据类型:为何是不可或缺的设计?
java
Re_zero21 小时前
线上日志被清空?这段仅10行的 IO 代码里竟然藏着3个毒瘤
java·后端
洋洋技术笔记21 小时前
Spring Boot条件注解详解
java·spring boot
程序员清风2 天前
程序员兼职必看:靠谱软件外包平台挑选指南与避坑清单!
java·后端·面试
皮皮林5512 天前
利用闲置 Mac 从零部署 OpenClaw 教程 !
java
华仔啊2 天前
挖到了 1 个 Java 小特性:var,用完就回不去了
java·后端
SimonKing2 天前
SpringBoot整合秘笈:让Mybatis用上Calcite,实现统一SQL查询
java·后端·程序员
日月云棠3 天前
各版本JDK对比:JDK 25 特性详解
java