Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@ Spring Cloud Gateway includes many built-in GatewayFilter Factories.

NOTE: For more detailed examples of how to use any of the following filters, take a look at the https://github.com/spring-cloud/spring-cloud-gateway/tree/main/spring-cloud-gateway-server-webflux/src/test/java/org/springframework/cloud/gateway/filter/factory[unit tests].


== JsonToGrpc Filter Dependencies
The following dependencies are required for the JsonToGrpc filter:
+---
| Dependency | Version |
+===+
| grpc-stub | 1.51.0 |
| grpc-protobuf | 1.51.0 |
+---+
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ If you are unfamiliar with these projects, we suggest you begin by reading their
IMPORTANT: Spring Cloud Gateway requires the Netty runtime provided by Spring Boot and Spring Webflux.
It does not work in a traditional Servlet Container or when built as a WAR.


NOTE: When using the JsonToGrpc filter, the following dependencies are required: grpc-stub (1.51.0) and grpc-protobuf (1.51.0).