grpc-spring-boot-starter icon indicating copy to clipboard operation
grpc-spring-boot-starter copied to clipboard

Spring Boot starter module for gRPC framework.

Results 58 grpc-spring-boot-starter issues
Sort by recently updated
recently updated
newest added

I wonder if it's high effort to implement such feature For example we use a mix of dependency-injection approaches/recommendations, as the result, we already have a factory that produces GrpcServices....

Hi, thanks for the work you've done. It's really great starter! I have some trouble, maybe it related with Kotlin CoroutineImpl. The interceptor below does not catch exception: ``` @GRpcService...

Hi, I thouth it would be nice to add ability to specify default deadline into client configuration, like this: ```yaml grpc: client: geo-ip: address: ${GEOIP_GRPC_ADDR} default-deadline-ms: 5000 ``` your opinion?

When using GRPC streams, it’s interesting to see how many messages are sent/received on the stream(s). It would be great if this starter offered such a metric by default. Ideally,...

enhancement

`org.lognet.springboot.grpc.GRpcServicesRegistry#descriptorToServiceMethod` doesn't map the RPC methods, of the form `rpc_method_name` (snake-case) to the generated java methods, of the form `rpcMethodName` (camel-case). This causes the following error to be thrown at...

*This pull request addresses #265* When currently using `@GRpcServiceAdvice` on a bean that is being created within a `@Configuration` like so (Spring Boot 2.5.6): ```java @Bean public GrpcExceptionAdvice grpcExceptionAdvice() {...

Can you provide a friendly client, for example : @GRpcClient

#198 is delayed to be reviewed till apr It will be really helpful to me. can your team review this pr?

This is to port over the grpc request scope added in https://github.com/yidongnan/grpc-spring-boot-starter in the following PR https://github.com/yidongnan/grpc-spring-boot-starter/pull/259 (by @ST-DDT) ```java @Bean @Scope(scopeName = GRpcRequestScope.GRPC_REQUEST_SCOPE_NAME, proxyMode = ScopedProxyMode.TARGET_CLASS) BeanType beanName() {...