Swagger 配置
Posted panchangde
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swagger 配置相关的知识,希望对你有一定的参考价值。
pom配置
<!-- swagger2 --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.8.0</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.8.0</version> </dependency>
注解参数
@Api(description = "任务规则", value = "任务规则管理")
@ApiOperation(value = "新增任务规则", notes = "新增任务规则")
@RequestMapping(path = "/insert", method = RequestMethod.POST)
@Authorization //需注册
以上是关于Swagger 配置的主要内容,如果未能解决你的问题,请参考以下文章