gRPC快速开始
请参考运维部署的内容,选择一种方式启动shenyu-admin
。比如,通过 启动Apache ShenYu
后台管理系统。
启动成功后,需要在基础配置->
插件管理中,把gRPC
插件设置为开启。
启动网关,如果是通过源码的方式,直接运行shenyu-bootstrap
中的ShenyuBootstrapApplication
。
引入网关对gRPC
的代理插件,在网关的 pom.xml
文件中增加如下依赖:
下载
在 shenyu-examples-grpc
下执行以下命令生成 java
代码:
mvn protobuf:compile //编译消息对象
mvn protobuf:compile-custom //依赖消息对象,生成接口服务
或者,如果你是通过 IntelliJ IDEA
打开 Apache ShenYu
工程,你可以在 Maven
工具栏中选中 protobuf:compile
和 protobuf:compile-custom
,然后右键 Run Maven Build
一键生成 proto
文件对应的 java
代码。
运行 org.apache.shenyu.examples.grpc.ShenyuTestGrpcApplication
中的 main
方法启动项目。
成功启动会有如下日志,表示将 gRPC
服务成功注册到 shenyu-admin
中。
shenyu-examples-grpc
项目成功启动之后会自动把加 @ShenyuGrpcClient
注解的接口方法注册到网关。
打开 插件列表 -> rpc proxy -> grpc
可以看到插件规则配置列表。
下面使用 postman
模拟 的方式来请求你的 gRPC
服务。 请求参数如下:
{
"data": [
{
"message": "hello grpc"
}
]
}
当前是以 json
的格式传递参数,key
的名称默认是data
,你可以在 GrpcConstants.JSON_DESCRIPTOR_PROTO_FIELD_NAME
中进行重置;value
的传入则根据你定义的 proto
文件。
Apache ShenYu
可以支持 gRPC
的流式调用,下面展示的是 gRPC
四种方法类型的调用。 在流式调用中,你可以通过数组的形式传递多个参数。
通过postman
模拟 http
请求,发起UNARY
调用。
CLIENT_STREAMING
请求参数如下:
{
"data": [
{
"text": "hello grpc"
},
{
"text": "hello grpc"
{
"text": "hello grpc"
}
]
通过postman
模拟 http
请求,发起CLIENT_STREAMING
调用。
SERVER_STREAMING
请求参数如下:
通过postman
模拟 http
请求,发起SERVER_STREAMING
调用。
BIDI_STREAMING
请求参数如下:
{
"data": [
{
"text": "hello grpc"
},
{
"text": "hello grpc"
},
{
"text": "hello grpc"
}
}