@Configuration @EnableSwagger2 @Profile("dev") public class SwaggerConfig { // your swagger configuration } 您可以通过命令行定义您的 Spring Boot 应用程序运行的配置文件:— --spring.profiles.active=dev 或通过配置文件: spring.profiles.active=dev。阅读Spring Boot 文档的这一部分以获取有关 @Profile ...
@Configuration @EnableSwagger2 @Profile("dev") public class SwaggerConfig { // your swagger configuration } 您可以通过命令行定义您的 Spring Boot 应用程序运行的配置文件:— --spring.profiles.active=dev 或通过配置文件: spring.profiles.active=dev。阅读Spring Boot 文档的这一部分以获取有关 @Profile ...