/grpc-spring-5

This repository contains simple gRPC server in client implementation using proto3 syntax on top of Spring 5 Framework using Spring Boot 2.

Primary LanguageJava

gRPC (java) + spring 5 Build Status

This repository contains simple gRPC server in client implementation using proto3 syntax on top of Spring 5 Framework using Spring Boot 2.

gradle
./gradlew clean assemble bootRun -b grpc-server/build.gradle
./gradlew clean assemble bootRun -b grpc-client/build.gradle

http get :8081 name=Max emo=SAD
http get :8081 name=Max emo=HAPPY

killall -9 java
maven
./mvnw clean package spring-boot:run -U -f grpc-server/pom.xml
./mvnw clean package spring-boot:run -U -f grpc-client/pom.xml

http get :8081 name=Max emo=SAD
http get :8081 name=Max emo=HAPPY

killall -9 java