是否可以使用 grpc-java 编写服务器并使用 grpc-web 从浏览器调用它?
Is it possible to write the server using grpc-java and call it from browser using grpc-web?
我们在 grpc-java
中实现了我们的微服务,是否可以使用 grpc-web
从浏览器调用它?
如果是,任何 reference/documentation 都会有所帮助。
目前 Java 中没有 grpc-web 实现。您需要使用一种普通的 grpc-web 代理(例如 Envoy-based implementation or Go implementation)。
我们在 grpc-java
中实现了我们的微服务,是否可以使用 grpc-web
从浏览器调用它?
如果是,任何 reference/documentation 都会有所帮助。
目前 Java 中没有 grpc-web 实现。您需要使用一种普通的 grpc-web 代理(例如 Envoy-based implementation or Go implementation)。