grpc-spring
grpc-spring copied to clipboard
Spring Boot starter module for gRPC framework.
Hi, I am using grpc-spring-boot-starter. gRPC server is working fine but the tomcat server is not working because of which slf4j logging and actuator endpoints aren't working. For actuator I...
**The context** I am exploring grpc-spring-boot-starter and like to find out how to support 2 ports. For example, I'd like to have 1 port running on 9090 as external port...
Or maybe you have any recommendations how to do the message validation in more generic, configurable way?
按照文档建议,proto为一个单独的interface项目,其他项目引入这个interface项目时候,这个interface项目是生成好grpc所需的java class文件,然后提交到maven仓库,还是把interface作为 git的 submodule 引入呢,这两种方式哪种更合理一些
**The problem** The GrpcChannelsProperties configuration class has a "defaultScheme" property that is configurable, but nothing is done with this configuration. As per the documentation: ``` If you don’t define an...
**The context** 我希望可以使用该框架实现安全认证功能,但无法实现 **The question** 一直都是使用maven构建项目,配置环境后依旧没法运行gradle构建的security示例 **The application's environment** 我使用的依赖如下: ```xml io.grpc grpc-netty 1.45.0 net.devh grpc-spring-boot-starter 2.13.1.RELEASE io.grpc grpc-netty-shaded net.devh grpc-server-spring-boot-starter 2.13.1.RELEASE io.grpc grpc-netty-shaded net.devh grpc-client-spring-boot-starter 2.13.1.RELEASE io.grpc grpc-netty-shaded org.springframework.boot...
**The context** I recently came to study this source code and want to learn the principle, but I found that there is a piece of code that I didn't understand,...
How to support grpc-gateway in springboot? How can I do that rpc and http+json use the same port? Thank you!
**grpc-server-spring-boot-starter 从2.4.0版本升级到 2.13.1版本, 配合使用 spring-cloud-consul-discover 2.1.2版本,无法正确获取grpc服务** **grpc-server-spring-boot-starter 2.4.0** 通过追踪代码 GrpcDiscoveryClientAutoConfiguration 您使用的ConsulGrpcRegistrationCustomizer 处理grpcPort信息 @Override public void customize(final ConsulRegistration registration) { List tags = registration.getService().getTags(); if (tags == null) { tags =...
**Work in progress** - Feedback appreciated Adds #196 Usage simply add `grpc-spring-boot-starter-web` to your dependencies and the library will automatically provide web methods to access the grpc-services. ## Calls *...