Skip to content

Spring boot microservices with gRPC (high performance Remote Procedure Call (RPC) framework)

Notifications You must be signed in to change notification settings

evertonsavio/spring-grpc-microservices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gRPC framework


  • BloomRPC Client
https://github.com/uw-labs/bloomrpc

NGINX

version: "3"
services:
  nginx:
    image: nginx:1.15-alpine
    volumes:
      - ./conf:/etc/nginx/conf.d
    ports:
      - 8585:8585
  • Load Balancing: /conf folder
upstream bankservers {
    server 192.168.15.4:6565;
    server 192.168.15.4:7575;
}

server {

    listen 8585 http2;

    location / {
        grpc_pass grpc://bankservers;
    }

}

About

Spring boot microservices with gRPC (high performance Remote Procedure Call (RPC) framework)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published