Furer Alexander
Furer Alexander
Snapshot version of grpc spring boot gradle plugin is published to sonatype only. Gradle plugins repo doesn't support snapshots. Please add sonatype repo as source for gradle plugins.
https://oss.sonatype.org/#nexus-search;gav~io.github.lognet.grpc-spring-boot~io.github.lognet.grpc-spring-boot.gradle.plugin~~~~kw,versionexpand
Hi Looks like you are after [grpc reverse proxy](https://github.com/grpc-ecosystem/grpc-gateway)... Does it help? I'm not sure you can serve 2 services on the same port without reverse proxy...
We are running this starter in our production environment (no proxy/load balancer ) and don't experience such issue. The only edge case we have is when server closes the idle...
@sourav-jha, the issue you are experiencing is not related to the starter itself but to your deployment environment. Reverse proxy or loadbalancer is probably the root cause for this. The...
I suggest to recheck you timeouts settings on both sides. Anyway, the starter only spins up the server for you, such kind of question might be better answered in grpc/java...
One possible solution would be to have protoc generator plugin that will wrap all generated interfaces with `Observable` instead of `StreamObserver`. There is already [one ](https://github.com/gengo/grpc-gateway)that does this to bridge...
I would be interested in hearing your opinion about having protoc plugin proposed earlier in this thread
I totally understand that the bridge would be the separate artifact, I'm trying to do a brainstorming to accomplish the solution. My proposal is to implement protoc plugin that will...
@cbornet ,Looks great, thanks for sharing. Which functionality/features this starter should include in addition to samples of Rx java usage based on saleforce protoc plugin ?