Swagger配置开发测试环境可用,正式环境不可访问
1、在配置类里面添加@Profile({"dev","test"})
// 对swagger文档配置只在测试环境可访问,生产环境不可访问。
@Profile({"dev","test"})
// 启用Swagger2
@EnableSwagger2
@Configuration
public class SwaggerConfig implements WebMvcConfigurer {
//....
}
2、使用@ConditionalOnProperty
注解,通过yml不同环境配置文件实现
通过yml不同环境配置文件实现
swagger:
enable: true
添加@ConditionalOnProperty(name = "swagger.enable", havingValue = "true")
@Configuration
@EnableSwagger2
@ConditionalOnProperty(name = "swagger.enable", havingValue = "true")
public class SwaggerConfig implements WebMvcConfigurer {
//....
}
借鉴:
Swagger设置密码登录