配置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
相关推荐
Echo flower2 小时前
Spring Boot WebFlux 实现流式数据传输与断点续传
java·spring boot·后端
没有bug.的程序员2 小时前
微服务中的数据一致性困局
java·jvm·微服务·架构·wpf·电商
鸽鸽程序猿2 小时前
【Redis】Java客户端使用Redis
java·redis·github
悦悦子a啊2 小时前
使用 Java 集合类中的 LinkedList 模拟栈以此判断字符串是否是回文
java·开发语言
Lucky小小吴2 小时前
java代码审计入门篇——Hello-Java-Sec(完结)
java·开发语言
一个想打拳的程序员2 小时前
无需复杂配置!用%20docker-webtop%20打造跨设备通用%20Linux%20桌面,加载cpolar远程访问就这么简单
java·人工智能·docker·容器
一起养小猫2 小时前
LeetCode100天Day2-验证回文串与接雨水
java·leetcode
清晓粼溪2 小时前
Java登录认证解决方案
java·开发语言
液态不合群2 小时前
查找算法详解
java·数据结构·算法