spring-cloud-gateway
spring-cloud-gateway copied to clipboard
How can spring cloud gateway route traffics to Go service via gRPC?
I have some micro services build via Go, these call each other via gRPC, now I want to found a gateway like spring cloud gateway, I receive a http rest request, than route to Go. In our micro services cluster, there is a nacos, so I choose the spring cloud gateway as our gateway. a bad news is that I don't want to be careful about the proto files and I can not gather them into my gateway
I don't want to be careful about the proto files and I can not gather them into my gateway
That's how gRPC works - you literally can't do anything without the schema. What were you expecting?