springboot集成swagger 使用国人写的com.spring4all的方式 依赖12345 <dependency> <groupId>com.spring4all</groupId> <artifactId>swagger-spring-boot-starter</artifactId> <version>1.9.1.RELEASE</version></dependency> 在启动类上增加注解1@EnableSwagger2Doc yml1234567891011#swagger配置swagger: enable: true title: OSS服务 description: OSS基础服务API version: ${project.version} base-package: com.shoukailiang.it_community base-path: /** exclude-path: /error authorization: key-name: Authorization 123456@GetMapping("/a") @ApiOperation(value ="获取accesskey" ) public String search() { AliyunProperties aliyunProperties = articleProperties.getAliyun(); return aliyunProperties.getAccessKeyId(); } 测试 后端 #java #springboot springboot集成swagger http://example.com/2021/04/19/springboot集成swagger/ 作者 shoukailiang 发布于 2021年4月19日 许可协议 vue父子组件通信-用.sync修饰符 上一篇 spring-boot-configuration-processor 下一篇