Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 756 Bytes

README.adoc

File metadata and controls

25 lines (18 loc) · 756 Bytes

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