配置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
相关推荐
符哥200812 小时前
C++ 进阶知识点整理
java·开发语言·jvm
Sayuanni%312 小时前
初阶_多线程1(线程含义与关键属性)
java
程序媛徐师姐12 小时前
Java基于微信小程序的模拟考试系统,附源码+文档说明
java·微信小程序·java模拟考试系统小程序·模拟考试微信小程序·模拟考试系统小程序·模拟考试小程序·java模拟考试小程序
疯狂敲代码的老刘12 小时前
JDK 1.6到25 全版本网盘合集 (Windows + Mac + Linux)
java·linux·windows·macos·jdk
夕除12 小时前
js--15
java·jvm·spring
曾经的三心草12 小时前
redis-9-集群
java·redis·mybatis
sun032212 小时前
【架构基础】Spring中的PropertySourcesPlaceholderConfigurer介绍 (并非新知识,比较古老的一种使用方式)
java·spring·架构
chilavert31812 小时前
技术演进中的开发沉思-356:重排序(中)
java·开发语言
毕设源码-邱学长12 小时前
【开题答辩全过程】以 基于SSM的儿童福利院管理系统为例,包含答辩的问题和答案
java·eclipse
TT哇13 小时前
【实习】数字营销系统 银行经理端(interact_bank)前端 Vue 移动端页面的 UI 重构与优化
java·前端·vue.js·ui