本文主要是介绍springboot整合swaager,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- 在pom中引入依赖
<!--swagger-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
- 写一个配置类,可以写成一个公共的工具类
@Configuration//配置类
@EnableSwagger2 //swagger注解
public class SwaggerConfig {
@Bean
public Docket webApiConfig(){
return new Docket(DocumentationType.SWAGGER_2)
.groupName("webApi")
.apiInfo(webApiInfo())
.select()
//.paths(Predicates.not(PathSelectors.regex("/admin/.*")))
.paths(Predicates.not(PathSelectors.regex("/error.*")))
.build();
}
private ApiInfo webApiInfo(){
return new ApiInfoBuilder()
.title("网站-课程中心API文档")
.description("本文档描述了课程中心微服务接口定义")
.version("1.0")
.contact(new Contact("java", "http://zheng.com", "1123@qq.com"))
.build();
}
}
- 在启动类上加上包扫描注解,要能够扫描到配置类
@ComponentScan(basePackages = {"xxx.xxx"})
- 输入地址 http://localhost:xxxx/swagger-ui.html
这篇关于springboot整合swaager的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!