grpc-spring
grpc-spring copied to clipboard
Spring Boot starter module for gRPC framework.
This repo has the same artifact name, which leads to confusion as to which one you are using in your build. https://github.com/LogNet/grpc-spring-boot-starter This is unfortunate because it doesn't offer as...
Hi, How can I integrate with the open census for monitoring and tracing? An example would be really helpful
The [AuthenticatingServerInterceptor](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/security/interceptors/AuthenticatingServerInterceptor.java) uses the `SecurityContextHolder.getContext().setAuthentication(authentication)` which won't work for Reactive Spring Security. We believe that `ReactiveSecurityContextHolder` should be used instead as shown in [this example](https://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/#jc-erms). Perhaps one option might be...
Firstly, there is nothing in the docs regarding what metrics are collected, and how to disable metrics collections. I asked in https://github.com/yidongnan/grpc-spring-boot-starter/issues/239 if more details could be added. Then, looking...
This starter is lack of support for Constructor Injection of client stubs. CI is quite a common usage in Spring projects(especially projects with Kotlin) to make service class neat and...
Could the @GrpcClient annotation will support the SPEL syntax?When I used the Spel,It showed me an error. 
Hello, I am trying to access the managed channels in order to warm up the DNS resolver. I mean I want the channel to resolve the service host after the...
I used the openssl to generate the server and client file,when I used them in my project.It throw an exception about this: java.security.InvalidKeyException: IOException : algid parse error, not a...
In the document,I've found the mtls's description,but I think maybe I need some example about the holy settings about mtls.Because I never used about this.