grpc-spring
grpc-spring copied to clipboard
Spring Boot starter module for gRPC framework.
**The problem** I want to optimize startup time by using `spring-context-indexer`, but it does not work with grpc-spring-boot-starter. **The solution** Provide support for `spring-context-indexer`.
Hello.I see #264 is marked help wanted . I add examples:cloud-sleuth-zipkin-grpc-client and examples:cloud-sleuth-zipkin-grpc-server which integration sleuth and zipkin .  
when i use client and server in one project (**if i just only use grpc-server-spring-boot-starter ,i did not get this problem**) I find GrpcMetadataZookeeperConfiguration will set port 0 but I...
My app is working with dynamic OAuth and all is good. I am now implementing request / response logging. One thing I need to log comes from the SecurityContext. This...
**The context** What do you wish to achieve? use `reflection API` debug grpc-server **The bug** I checked `grpc.server.reflection-service-enabled`config is`true` also `@Bean @GrpcService protoReflectionService` from `net.devh.boot.grpc.server.autoconfigure.GrpcReflectionServiceAutoConfiguration` did worked. but `net.devh.boot.grpc.server.service.AnnotationGrpcServiceDiscoverer#findGrpcServices()` line:55...
Trying to use GRPC implementation stub in two classes, can I do that?
i dependency grpc-spring-boot-starter in pom and i want to enabled/disabled grpc server in cofig like this: ``` grpc: server: port: 0 enabled: false ``` can supports the param grpc.server.enabled in...
**The context** Apply the retry, backoff strategy per RPC call **The question** Sometimes we get an error using your library as gRPC client and [Armeria](https://line.github.io/armeria/) as gRPC server. We saw...
**The context** We also want to be generating the Rest gateway for the GRPC services as mentioned in [here](https://github.com/grpc-ecosystem/grpc-gateway). **The question** Is there an example/guideline to do this ?
**The context** What do you wish to achieve? **Authentication and Authorization not working** What's the problem? What's not working? What's missing and why do you need it? **按照文档配置鉴权和授权都失效了。鉴权只有@Secured 能生效,手动管理 method...