SpringCloud-Gateway对multipart/form-data等其他POST请求类型的body体进行多次打开
本次代码仅在以下版本中测试通过
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Greenwich.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> <version>2.1.4.RELEASE</version> </dependency> |
这几天在用g… Read More »