Spring 4.2.2以上版本和swagger集成方案和踩过的坑

297 阅读2分钟

因为公司使用的spring版本太高,在集成swagger的时候会存在一些问题,而网上的很多实例大多都是版本比较低的,为了是朋友们少才坑,我这边将集成的过程记录一下:

1. 引入spring、swagger的相关jar包(springfox-swagger2、springfox-swagger-ui),在pom.xml中配置:

Xml代码 收藏代码
  1. <dependency>
  2. <groupId>io.springfox</groupId>
  3. <artifactId>springfox-swagger2</artifactId>
  4. <version>2.4.0</version>
  5. <exclusions>
  6. <exclusion>
  7. <groupId>org.springframework</groupId>
  8. <artifactId>spring-core</artifactId>
  9. </exclusion>
  10. <exclusion>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-beans</artifactId>
  13. </exclusion>
  14. <exclusion>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-context</artifactId>
  17. </exclusion>
  18. <exclusion>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-context-support</artifactId>
  21. </exclusion>
  22. <exclusion>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-aop</artifactId>
  25. </exclusion>
  26. <exclusion>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-tx</artifactId>
  29. </exclusion>
  30. <exclusion>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-orm</artifactId>
  33. </exclusion>
  34. <exclusion>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-jdbc</artifactId>
  37. </exclusion>
  38. <exclusion>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-web</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-webmvc</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-oxm</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.springfox</groupId>
  54. <artifactId>springfox-swagger-ui</artifactId>
  55. <version>2.4.0</version>
  56. </dependency>

提醒: 特别注意,springfox-swagger2在集成的时候,已经引入了spring的相关jar,特别是spring-context、spring-context-support的版本和项目中使用的版本完全不一致,项目在启动的时候出现很多包冲突的问题,这边在引入pom.xml文件的时候过滤掉了spring的相关jar包,如绿色标志。

2. 编写Swagger的配置类:

Java代码 收藏代码
  1. package com.ml.honghu.swagger.web;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.ComponentScan;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.web.servlet.config.annotation.EnableWebMvc;
  6. import springfox.documentation.builders.ApiInfoBuilder;
  7. import springfox.documentation.builders.PathSelectors;
  8. import springfox.documentation.builders.RequestHandlerSelectors;
  9. import springfox.documentation.service.ApiInfo;
  10. import springfox.documentation.service.Contact;
  11. import springfox.documentation.spi.DocumentationType;
  12. import springfox.documentation.spring.web.plugins.Docket;
  13. import springfox.documentation.swagger2.annotations.EnableSwagger2;
  14. @EnableWebMvc
  15. @EnableSwagger2
  16. @Configuration
  17. @ComponentScan(basePackages ={"com.ml.honghu.**.rest"})
  18. public class SwaggerConfig {
  19. @Bean
  20. public Docket createRestApi() {
  21. return new Docket(DocumentationType.SWAGGER_2)
  22. .apiInfo(apiInfo())
  23. .select()
  24. .apis(RequestHandlerSelectors.basePackage("com.ml.honghu"))
  25. .paths(PathSelectors.any())
  26. .build();
  27. }
  28. private ApiInfo apiInfo() {
  29. return new ApiInfoBuilder()
  30. .title("接口列表 v1.0")
  31. .description("接口信息")
  32. .termsOfServiceUrl("http://honghu.com")
  33. .contact(new Contact("", "", "HongHu"))
  34. .version("1.1.0")
  35. .build();
  36. }
  37. }

提醒:注意红色标注的地方

3. 在spring-mvc.xml文件中进行过滤器的配置,过滤掉swagger的相关访问配置:

Java代码 收藏代码
  1. <mvc:exclude-mapping path="/swagger*/**"/>
  2. <mvc:exclude-mapping path="/v2/**"/>
  3. <mvc:exclude-mapping path="/webjars/**"/>

4. 服务配置项

Java代码 收藏代码
  1. <span style="color: #ff0000;">@Api("区域服务")</span>
  2. @RestController
  3. @RequestMapping(value = "/rest/area")
  4. public class AreaService {
  5. @Autowired
  6. private AreaService areaService;
  7. <span style="color: #ff0000;">@ApiOperation(value = "区域列表", httpMethod = "GET", notes = "区域列表")</span>
  8. @IsLogin
  9. @ResponseBody
  10. @RequestMapping(value = "treeData", method = RequestMethod.GET)
  11. public List<Map<String, Object>> treeData(
  12. <span style="color: #ff0000;">@ApiParam(required = true, value = "区域ID")</span> @RequestParam(required=false) String extId, HttpServletResponse response) {
  13. List<Map<String, Object>> mapList = Lists.newArrayList();
  14. List<Area> list = areaService.findAll();
  15. for (int i=0; i<list.size(); i++){
  16. Area e = list.get(i);
  17. if (StringUtils.isBlank(extId) || (extId!=null && !extId.equals(e.getId()) && e.getParentIds().indexOf(","+extId+",")==-1)){
  18. Map<String, Object> map = Maps.newHashMap();
  19. map.put("id", e.getId());
  20. map.put("pId", e.getParentId());
  21. map.put("name", e.getName());
  22. mapList.add(map);
  23. }
  24. }
  25. return mapList;
  26. }
  27. }

4. 启动项目,查看结果:



到此结束!!