An open API service indexing awesome lists of open source software.

https://github.com/daggerok/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.
https://github.com/daggerok/grpc-spring-5

grpc grpc-java

Last synced: about 8 hours ago
JSON representation

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

Awesome Lists containing this project

README

          

= gRPC (java) + spring 5 image:https://travis-ci.org/daggerok/grpc-spring-5.svg?branch=master["Build Status", link="https://travis-ci.org/daggerok/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.

.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
----