[gRPC] 시작에서 운영까지 - 실제로 구현해보자.
2023. 12. 10. 00:47
Study
자바를 사용한 gRPC 서비스 구현. src/main/proto 디렉터리 생성 -> ProductInfo.proto (서비스 정의 파일) 생성. // productInfo.proto syntax = "proto3"; import "google/protobuf/wrappers.proto"; package grpc_test_01; service ProductInfo { rpc addProduct(Product) returns (ProductID); rpc getProduct(ProductID) returns (Product); } message Product { string id = 1; string name = 2; string description = 3; float price = 4; } message..