之前在 https://www.laiyy.top/java/2019/01-24/spring-cloud-10.html
介绍了使用 Feign 做文件上传的操作,使用 Zuul 做文件上传,实际上是在 feign 调用之外增加了一层 zuul 路由。
Zuul 文件上传
源码:https://gitee.com/laiyy0728/spring-cloud/tree/master/spring-cloud-zuul/spring-cloud-zuul-file-upload
Zuul Server
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| server: port: 5555 spring: application: name: spring-cloud-zuul-file-upload servlet: multipart: enabled: true max-file-size: 100MB max-request-size: 100MB file-size-threshold: 1MB location: / eureka: client: service-url: defaultZone: http://localhost:8761/eureka/ instance: prefer-ip-address: true instance-id: ${spring.application.name}:${server.port}
hystrix: command: default: execution: isolation: thread: timeoutInMilliseconds: 30000 ribbon: ConnectionTimeout: 3000 ReadTimeout: 30000
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| @SpringBootApplication @EnableZuulProxy @EnableDiscoveryClient @RestController public class SpringCloudZuulFileUploadApplication {
public static void main(String[] args) { SpringApplication.run(SpringCloudZuulFileUploadApplication.class, args); }
@PostMapping(value = "/upload") public String uploadFile(@RequestParam(value = "file") MultipartFile file) throws Exception { byte[] bytes = file.getBytes(); File fileToSave = new File(file.getOriginalFilename()); FileCopyUtils.copy(bytes, fileToSave); return fileToSave.getAbsolutePath(); }
}
|
测试结果
注意事项
如果使用的 cloud 版本是 Finchley 之前的版本,在上传中文名称的文件时,会出现乱码的情况。解决办法:在调用接口上加上 /zuul
根节点。如: http://localhost:5555/zuul/upload
需要注意的是,在 @RequestMapping、@PostMapping 上不能加 /zuul
,这个节点是 zuul 自带的。也就是说,即是在项目中没有 /zuul
开头的映射,使用 zuul 后都会加上 /zuul
根映射。
Zuul 使用技巧
Zuul 饥饿加载
Zuul 内部使用 Ribbon 远程调用,根据 Ribbon 的特性,第一次调用会去注册中心获取注册表,初始化 Ribbon 负载信息,这是一种懒加载策略,但是这个过程很耗时。为了避免这个问题,可以使用饥饿加载
1 2 3 4
| zuul: ribbon: eager-load: enabled: true
|
修改请求体
源码:https://gitee.com/laiyy0728/spring-cloud/tree/master/spring-cloud-zuul/spring-cloud-zuul-change-param
zuul server
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| @Configuration public class ChangeParamZuulFilter extends ZuulFilter { @Override public String filterType() { return FilterConstants.PRE_TYPE; }
@Override public int filterOrder() { return FilterConstants.PRE_DECORATION_FILTER_ORDER + 1; }
@Override public boolean shouldFilter() { return true; }
@Override public Object run() throws ZuulException { RequestContext currentContext = RequestContext.getCurrentContext(); Map<String, List<String>> requestQueryParams = currentContext.getRequestQueryParams(); if (requestQueryParams == null) { requestQueryParams = Maps.newHashMap(); } List<String> arrayList = Lists.newArrayList(); arrayList.add("1111111"); requestQueryParams.put("test", arrayList); currentContext.setRequestQueryParams(requestQueryParams); return null; } }
|
provider
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| @RestController public class TestController { @PostMapping("/change-params") public Map<String, Object> modifyRequestEntity (HttpServletRequest request) { Map<String, Object> bodyParams = new HashMap<>(); Enumeration enu = request.getParameterNames(); while (enu.hasMoreElements()) { String paraName = (String)enu.nextElement(); bodyParams.put(paraName, request.getParameter(paraName)); } return bodyParams; } }
|
验证
访问 http://localhost:5555/provider/change-params
zuul 中使用 OkHttp
1 2 3 4
| <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> </dependency>
|
1 2 3 4 5 6
| ribbon: okhttp: enabled: true http: client: enabled: false
|
zuul 重试
1 2 3 4 5
| <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| spring: cloud: loadbalancer: retry: enabled: true
zuul: retryable: true
ribbon: ConnectTimeout: 3000 ReadTimeout: 60000 MaxAutoRetries: 1 MaxAutoRetriesNextServer: 1 OkToRetryOnAllOperations: true
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| @Configuration public class AddHeaderZuulFilter extends ZuulFilter { @Override public String filterType() { return FilterConstants.PRE_TYPE; }
@Override public int filterOrder() { return FilterConstants.PRE_DECORATION_FILTER_ORDER + 1; }
@Override public boolean shouldFilter() { return true; }
@Override public Object run() throws ZuulException { RequestContext currentContext = RequestContext.getCurrentContext(); currentContext.addZuulRequestHeader("key", "value"); return null; } }
|
在下游 spring-cloud-change-param-provider
中查看 header 传递
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| @RestController public class TestController {
@PostMapping("/change-params") public Map<String, Object> modifyRequestEntity (HttpServletRequest request) { Map<String, Object> bodyParams = new HashMap<>(); Enumeration enu = request.getParameterNames(); while (enu.hasMoreElements()) { String paraName = (String)enu.nextElement(); bodyParams.put(paraName, request.getParameter(paraName)); }
Enumeration<String> headerNames = request.getHeaderNames(); while (headerNames.hasMoreElements()) { String header = headerNames.nextElement(); String value = request.getHeader(header); System.out.println(header + " ---> " + value); } return bodyParams; } }
|
访问 http://localhost:5555/provider/change-params ,查看控制台:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| user-agent ---> Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 cache-control ---> no-cache origin ---> chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop postman-token ---> a99dcd1c-7c76-2d7e-8a4c-fa5c2bdb6222 accept ---> */* accept-encoding ---> gzip, deflate, br accept-language ---> zh-CN,zh;q=0.9 x-forwarded-host ---> localhost:5555 x-forwarded-proto ---> http x-forwarded-prefix ---> /provider x-forwarded-port ---> 5555 x-forwarded-for ---> 0:0:0:0:0:0:0:1 key ---> value ---------------------- zuul server 中增加的 header content-type ---> application/x-www-form-urlencoded;charset=UTF-8 content-length ---> 12 host ---> 10.10.10.141:7070 connection ---> Keep-Alive
|
Zuul 整合 Swagger
provider
1 2 3 4 5 6 7 8 9 10 11 12
| <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency>
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.7.0</version> </dependency> </dependencies>
|
1 2 3 4 5 6 7 8 9 10
| @SpringBootApplication @EnableDiscoveryClient @EnableSwagger2 public class SpringCloudChangeParamProviderApplication {
public static void main(String[] args) { SpringApplication.run(SpringCloudChangeParamProviderApplication.class, args); }
}
|
Zuul Server
1 2 3 4 5 6 7 8 9 10 11
| <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.9.2</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
@Configuration @EnableSwagger2 public class Swagger2Configuration {
private final ZuulProperties zuulProperties;
@Autowired public Swagger2Configuration(ZuulProperties zuulProperties) { this.zuulProperties = zuulProperties; }
@Bean public Docket createRestApi() { return new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo()); }
private ApiInfo apiInfo() { return new ApiInfoBuilder().title("spring cloud swagger 2") .description("spring cloud 整合 swagger2") .termsOfServiceUrl("") .contact(new Contact("laiyy", "laiyy0728@gmail.com", "laiyy0728@gmail.com")).version("1.0") .build(); }
@Primary @Bean public SwaggerResourcesProvider swaggerResourcesProvider() { return () -> { List<SwaggerResource> resources = new ArrayList<>(); zuulProperties.getRoutes().values().stream() .forEach(route -> resources.add(createResource(route.getServiceId(), route.getServiceId(), "2.0"))); return resources; }; }
private SwaggerResource createResource(String name, String location, String version) { SwaggerResource swaggerResource = new SwaggerResource(); swaggerResource.setName(name); swaggerResource.setLocation("/" + location + "/v2/api-docs"); swaggerResource.setSwaggerVersion(version); return swaggerResource; }
}
|
验证
访问 http://localhost:5555/swagger-ui.html