您可以下載架構 gRPC 伺服器 ,輕鬆開始實作完整的 gRPC 伺服器。
開始使用
在 src/main 下方建立 Java Gradle 專案 (grpc-booking-service)。 建立「proto」目錄。
下載預訂服務 定義 和健康狀態檢查 通訊協定 將其放在 src/main/proto 下。這些檔案會定義 gRPC 方法 Actions Center API 和 Health Check 的訊息。
更新 build.gradle 檔案,新增依附元件和 protobuf 外掛程式 。protobuf-gradle-plugin 的簡介和指南可以 請參閱這裡。
apply plugin: 'java' apply plugin: 'com.google.protobuf' repositories { mavenCentral() } // updating the version in our release process. def grpcVersion = '1.8.0' // CURRENT_GRPC_VERSION def nettyTcNativeVersion = '2.0.7.Final' dependencies { compile "com.google.api.grpc:proto-google-common-protos:0.1.9" compile "io.grpc:grpc-netty:${grpcVersion}" compile "io.grpc:grpc-protobuf:${grpcVersion}" compile "io.grpc:grpc-stub:${grpcVersion}" compile "io.netty:netty-tcnative-boringssl-static:${nettyTcNativeVersion}" compile "org.bouncycastle:bcmail-jdk15:1.46" testCompile "io.grpc:grpc-testing:${grpcVersion}" testCompile "junit:junit:4.12" testCompile "org.mockito:mockito-core:1.9.5" } buildscript { repositories { mavenCentral() } dependencies { // ASSUMES GRADLE 2.12 OR HIGHER. Use plugin version 0.7.5 with earlier // gradle versions classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.1' } } protobuf { protoc { artifact = 'com.google.protobuf:protoc:3.4.0' } plugins { grpc { artifact = "io.grpc:protoc-gen-grpc-java:${grpcVersion}" } } generateProtoTasks { all()*.plugins { grpc {} } } } // Inform IDEs like IntelliJ IDEA, Eclipse or NetBeans about the generated code. sourceSets { main { java { srcDirs 'build/generated/source/proto/main/grpc' srcDirs 'build/generated/source/proto/main/java' } } } // Generate IntelliJ IDEA's .idea & .iml project files apply plugin: 'idea' // Provide convenience executables for trying out the examples. apply plugin: 'application' startScripts.enabled = false
執行下列指令來建構程式庫,並從 protoc 建構外掛程式:
./gradlew build
如要在伺服器上啟用 TLS,請在 src/main/certificates/ 下方 必須提供下列檔案:
- server_cert_chain.pem 您的伺服器憑證鏈結 (PEM 格式)
- server_private_key.pem 您的伺服器憑證私密金鑰 鏈結,必須是 PKCS#8 私密金鑰
- trusted_client_roots.pem 信任的根憑證 驗證用戶端時,您可以選擇取得這組 取得信任的根憑證 Mozilla 或安裝 set Google 網際網路主管機關目前建議的根層級密碼 G2。如果是後者 隨時手動更新根憑證
從這個存放區擷取程式碼範例:
git clone https://maps-booking.googlesource.com/java-maps-booking-grpc-server-skeleton
將 BookingService.java 放在 src/main/java/ext/maps/booking/partner/v2,將 Health.java 放在下方 src/main/java/grpc/health/v1.同時按照 TODOs 操作, 完成導入作業
更新 gradle.build 檔案,指定伺服器執行檔的產生程序 方法是加入下列程式碼:
task bookingService(type: CreateStartScripts) { mainClassName = 'ext.maps.booking.partner.v2.BookingService' applicationName = 'booking-service' outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime } applicationDistribution.into('bin') { from(bookingService) fileMode = 0755 }
編譯伺服器:
./gradlew installDist
執行預訂伺服器:
./build/install/grpc-booking-service/bin/booking-service
最終目錄結構
src
|---main
|---certificates
|---server_cert_chain.pem
|---server_private_key.pem
|---trusted_client_roots.pem
|---java
|---ext.maps.booking.partner.v2.BookingService.java
|---grpc.health.v1.Health.java
|---proto
|---booking_service.proto
|---health.proto
|---test
其他參考資料
如需其他建築工具,請造訪 gRPC-java 並下載 例如,請查看 grpc-java/examples。
git clone -b v1.9.0 https://github.com/grpc/grpc-java