欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Springboot中使用Swagger构建文档

程序员文章站 2022-03-16 17:05:04
...
@Configuration
@EnableSwagger2
public class SwaggerConfig {
	@Bean
	public Docket mailApi() {
		return new Docket(DocumentationType.SWAGGER_2).groupName("邮件管理").apiInfo(apiInfo()).select()
				.apis(RequestHandlerSelectors.basePackage("com.itstyle.mail.web")).paths(PathSelectors.any()).build();
	}
	// 预览地址:swagger-ui.html
	private ApiInfo apiInfo() {
		return new ApiInfoBuilder().title("Spring 中使用Swagger构建文档").termsOfServiceUrl("https://blog.52itstyle.com/")
				.contact(new Contact("科帮网 ", "https://blog.52itstyle.com/", "aaa@qq.com")).version("2.1").build();
	}
}

确定项目ok之后,直接访问http://localhost:8080/springboot_mail/swagger-ui.html

页面展示为Springboot中使用Swagger构建文档

相关标签: Swagger