grpc-spring
grpc-spring copied to clipboard
Spring Boot starter module for gRPC framework.
**The problem** Currently, annotations `@GrpcService` and `@GrpcClient` autoconfigure the server and the client respectively. For integration testing, we can use in process server and client as explained [here](https://yidongnan.github.io/grpc-spring-boot-starter/en/server/testing.html#integration-tests). In my...
Fixes #419 TODO: * [x] `none` client/channel address scheme * [ ] `none` client/channel address (Optional) * [ ] `none` server address * [ ] Deprecate server port = -1...
Java 8 is reaching end of life and Java 17 is the new rising star. For that reason we should add Java 17 to our build pipeline to ensure that...
This test seems to still fail randomly/rarely during CI builds unfortunately I cannot reproduce this error locally. ````txt MetricCollectingInterceptorTest > testMetricsFailedCall() FAILED org.opentest4j.AssertionFailedError: execution timed out after 1000 ms at...
Right now, there is only a partial list of configuration parameters fetched from configuration and used for building the server. For example, I need to configure the MaxConnectionAge. This configuration...
Example: Spring boot project starts a REST server in port 8080, and starts a grpc server in port 9090. Can both two servers can be registered to nacos, and how?
When I use `spring-cloud-starter-zookeeper-discovery` that it depend on `spring-boot-starter-web`, it happens there are two netty contariners. There are two server port that one is server port default by springboot ,one...
This is a usage question. In the [Sleuth docs](https://cloud.spring.io/spring-cloud-sleuth/spring-cloud-sleuth.html#_grpc) for gRPC, they mention two variants. First one uses `io.github.lognet:grpc-spring-boot-starter` and `io.zipkin.brave:brave-instrumentation-grpc` and clients must use `SpringAwareManagedChannelBuilder`. In the second variant,...
**The context** I'm trying to understand how grpc server is handling thread creation and usage, so I can control it manually. **The question** I'm running a grpc server in my...