SpringBoot整合Swagger
2021/4/9 18:55:44
本文主要是介绍SpringBoot整合Swagger,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.导入依赖
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.9.2</version> </dependency>
2.添加配置
@Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket createRestApi() { return new Docket(DocumentationType.SWAGGER_2) // 指定构建api文档的详细信息的方法:apiInfo() .apiInfo(apiInfo()) .select() // 指定要生成api接口的包路径,这里把controller作为包路径,生成controller中的所有接口 .apis(RequestHandlerSelectors.basePackage("com.itcodai.course01.controller")) .paths(PathSelectors.any()) .build(); } /** * 构建api文档的详细信息 * * @return */ private ApiInfo apiInfo() { return new ApiInfoBuilder() // 设置页面标题 .title("Spring Boot集成Swagger2") // 设置接口描述 .description("Spring Boot") // 设置联系方式 .contact(new Contact("jky","https://i-beta.cnblogs.com","")) // 设置版本 .version("1.0") // 构建 .build(); }
注意如果项目中使用fastjson作为json解析器时,会导致swagger页面无法访问,解决方法:https://blog.csdn.net/qq_26769513/article/details/83268011
3.主要的注解
@ApiModel 注解用于实体类,表示对类进行说明,用于参数用实体类接收。 @ApiModelProperty 注解用于实体类中属性,表示对 model 属性的说明或者数据操作更改。 @Api 注解用于类上,表示标识这个类是 swagger 的资源。 @ApiOperation 注解用于方法,表示一个 http 请求的操作。 @ApiParam 注解用于参数上,用来标明参数信息。
4.报错
Illegal DefaultValue null for parameter type integer
java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Long.parseLong(Long.java:601)
at java.lang.Long.valueOf(Long.java:803)
这个需要在对应controller的方法中使用@ApiParam里指定example="0",就可以解决
这篇关于SpringBoot整合Swagger的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-27本地多文件上传的简单教程
- 2024-11-27低代码开发:初学者的简单教程
- 2024-11-27如何轻松掌握拖动排序功能
- 2024-11-27JWT入门教程:从零开始理解与实现
- 2024-11-27安能物流 All in TiDB 背后的故事与成果
- 2024-11-27低代码开发入门教程:轻松上手指南
- 2024-11-27如何轻松入门低代码应用开发
- 2024-11-27ESLint开发入门教程:从零开始使用ESLint
- 2024-11-27Npm 发布和配置入门指南
- 2024-11-27低代码应用课程:新手入门指南