반응형
GRPC
-
[GRPC] GRPC Server(JAVA)와 Client(JAVA, NodeJS) 구축카테고리 없음 2022. 2. 25. 16:35
이번 포스팅에서는 GRPC Server 및 Client(Stub)를 구축하려고 한다. 예제 코드를 확인하면 진행해보자. https://github.com/alsdud154/grpc.git GitHub - alsdud154/grpc Contribute to alsdud154/grpc development by creating an account on GitHub. github.com 먼저 GRPC Server(JAVA)를 만들자. build.gradle이다. 작성 시점에서 grpcVresion 1.44.1이 maven repository 최신 버전이다. Quick Start Example Project를 참고하여 만들었으니 설명은 공식 사이트를 참고하자. plugins { id 'application' i..