simplemall项目前几篇回顾:
源码地址:https://github.com/backkoms/simplemall
前端和后端的唯一联系,变成了API接口;API文档变成了前后端开发人员联系的纽带,变得越来越重要,swagger就是一款让你更好的书写API文档的框架。 本实战案例中也引入swagger2作为API管理工具,下面罗列下swagger2+SpringBoot使用步骤。
SpringBoot集成Swagger2
第一步,pom配置
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --><dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger2</artifactId><version>2.6.1</version></dependency><!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui --><dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger-ui</artifactId><version>2.6.1</version></dependency>
第二步编写配置管理类Swagger2Config
package com.simplemall.micro.serv.page;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import io.swagger.annotations.ApiOperation;import springfox.documentation.builders.ApiInfoBuilder;import springfox.documentation.builders.PathSelectors;import springfox.documentation.builders.RequestHandlerSelectors;import springfox.documentation.service.ApiInfo;import springfox.documentation.spi.DocumentationType;import springfox.documentation.spring.web.plugins.Docket;import springfox.documentation.swagger2.annotations.EnableSwagger2;/*** swagger2 configuration** @author guooo**/@Configuration//SpringBoot启动时自动装载@EnableSwagger2 //打开swagger2功能,缺失的话同样无法打开ui页面public class Swagger2Config {@Beanpublic Docket createRestApi() {return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select().apis(RequestHandlerSelectors.basePackage("com.simplemall.micro.serv.page.api")).apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)).paths(PathSelectors.any()).build();}private ApiInfo apiInfo() {return new ApiInfoBuilder().title("Front app Swagger apis").description("For micro-service 's app to use").version("V1.0").build();}}
经过以上两步简单的配置后,可以直接进行接口代码的编写。
@Api(value = "用户服务", tags = "用户服务接口")@RestController@RefreshScope // 使用该注解的类,会在接到SpringCloud配置中心配置刷新的时候,自动将新的配置更新到该类对应的字段中。需要重新触发加载动作可以使用POST方式请求/refresh接口,该接口位于spring-boot-starter-actuator依赖,调用前需添加否则404。public class APIAccountController {@ApiOperation(value = "用户登陆")@RequestMapping(value = "acc/login", method = { RequestMethod.POST })public RestAPIResult<String> login(@ApiParam(value = "手机号") @RequestParam(required = true) String phone,@ApiParam(value = "密码") @RequestParam(required = true) String password, HttpSession session) {RestAPIResult<String> restAPIResult = new RestAPIResult<>();Account account = accountFeignClient.login(phone, password);}
使用swagger进行API管理的话,对代码有一定的侵入性,这个需要考虑在内。之前也提到过几种在线API的管理方式,点击链接《介绍几款常用的在线API管理工具》
使用SpringBoot技术,再以maven原始的方式引入swagger使用的话,远不如一个starter来的爽,这里介绍一个swagger-starter,可以更快捷的与spring boot集成使用。
swagger-spring-boot-starter应用
在pom.xml中引入依赖:【当前最新版本 1.7.0.RELEASE】
<dependency><groupId>com.spring4all</groupId><artifactId>swagger-spring-boot-starter</artifactId><version>1.7.0.RELEASE</version></dependency>
注意:从1.6.0开始,我们按Spring Boot官方建议修改了artifactId为swagger-spring-boot-starter,1.6.0之前的版本不做修改,依然为使用spring-boot-starter-swagger !
在应用主类中增加@EnableSwagger2Doc注解
@EnableSwagger2Doc@SpringBootApplicationpublic class Bootstrap {public static void main(String[] args) {SpringApplication.run(Bootstrap.class, args);}}
默认情况下就能产生所有当前Spring MVC加载的请求映射文档。
参数配置,配置示例
swagger.enabled=trueswagger.title=spring-boot-starter-swaggerswagger.description=Starter for swagger 2.xswagger.version=1.4.0.RELEASEswagger.license=Apache License, Version 2.0swagger.licenseUrl=https://www.apache.org/licenses/LICENSE-2.0.htmlswagger.termsOfServiceUrl=https://github.com/dyc87112/spring-boot-starter-swaggerswagger.contact.name=didiswagger.contact.url=http://blog.didispace.comswagger.contact.email=dyc87112@qq.comswagger.base-package=com.didispaceswagger.base-path=/**swagger.exclude-path=/error, /ops/**swagger.globalOperationParameters[0].name=name oneswagger.globalOperationParameters[0].description=some description oneswagger.globalOperationParameters[0].modelRef=stringswagger.globalOperationParameters[0].parameterType=headerswagger.globalOperationParameters[0].required=trueswagger.globalOperationParameters[1].name=name twoswagger.globalOperationParameters[1].description=some description twoswagger.globalOperationParameters[1].modelRef=stringswagger.globalOperationParameters[1].parameterType=bodyswagger.globalOperationParameters[1].required=false// 取消使用默认预定义的响应消息,并使用自定义响应消息swagger.apply-default-response-messages=falseswagger.global-response-message.get[0].code=401swagger.global-response-message.get[0].message=401getswagger.global-response-message.get[1].code=500swagger.global-response-message.get[1].message=500getswagger.global-response-message.get[1].modelRef=ERRORswagger.global-response-message.post[0].code=500swagger.global-response-message.post[0].message=500postswagger.global-response-message.post[0].modelRef=ERROR
详细介绍可参考源码,地址:https://github.com/SpringForAll/spring-boot-starter-swagger。由于JDK代码编译版本的限制,JDK1.7是不支持的,可使用1.8
扩展阅读: