SpringBoot整合Swagger2. Swagger轻松使用
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any()) // 对所有API进行扫描
.paths(PathSelectors.any()) // 对所有路径进行扫描
.build();
}
}
这段代码定义了一个配置类SwaggerConfig
,使用@EnableSwagger2
注解启用Swagger2。在api()
方法中,我们创建了一个Docket
bean,指定了使用的文档类型为DocumentationType.SWAGGER_2
,并且通过apis()
和paths()
方法分别指定了API扫描的策略和路径扫描的策略。这样就可以在Spring Boot应用中整合并使用Swagger进行API文档的生成和测试了。
评论已关闭