Skip to content

TechPrimers/grpc-spring-boot-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot gRPC Example

This project covers usage of gRPC in a Spring Boot application

Commands used

  grpcurl --plaintext localhost:9090 list
  grpcurl --plaintext localhost:9090 list com.techprimers.grpc.GreetingService
  grpcurl --plaintext -d '{"message": "How are you?"}' localhost:9090 com.techprimers.grpc.GreetingService/greeting
  

Reference