返回顶部
首页 > 资讯 > 后端开发 > Python >maven grpc整合springboot demo
  • 570
分享到

maven grpc整合springboot demo

2024-04-02 19:04:59 570人浏览 泡泡鱼

Python 官方文档:入门教程 => 点击学习

摘要

目录1. 说明2. 公共部分2.1 添加依赖2.2 添加proto依赖文件2.3 通过protobuf生成Java代码3. server端接口具体实现4 client端接口具体实现1

1. 说明

grpc基于protobuf来定义接口。分为server端和client端。其中server端提供接口实现,client通过调用server端接口从而获取期望数据。

2. 公共部分

2.1 添加依赖

        <dependency>
            <groupId>net.devh</groupId>
            <artifactId>grpc-spring-boot-starter</artifactId>
            <version>2.12.0.RELEASE</version>
        </dependency>
        <dependency>
            <!-- Java 9+ compatibility -->
            <groupId>javax.annotation</groupId>
            <artifactId>javax.annotation-api</artifactId>
        </dependency>

添加插件(注意:如果waGon-provider-api无法自动引入,可以现在依赖中引入,以便于依赖的下载,然后在删除依赖坐标即可)

<plugin>
                <!--                    protobuf生成插件-->
                <groupId>org.xolstice.Maven.plugins</groupId>
                <artifactId>protobuf-maven-plugin</artifactId>
                <version>0.6.1</version>
                <configuration>
                    <protocArtifact>com.google.protobuf:protoc:3.17.3:exe:${os.detected.classifier}
                    </protocArtifact>
                    <pluginId>grpc-java</pluginId>
                    <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.39.0:exe:${os.detected.classifier}
                    </pluginArtifact>
                    <!--默认值-->
                    <protoSourceRoot>${project.basedir}/src/main/proto</protoSourceRoot>
                    <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
                    <clearOutputDirectory>false</clearOutputDirectory>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                            <goal>compile-custom</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

2.2 添加proto依赖文件

添加目录src/main/proto,并将目录设置为Source Root,然后在目录src/main/proto下添加文件hello.proto,内容如下

syntax = "proto3"; //指定proto版本
package com.server;
// 生成的Java代码的包名
option java_package = "com.grpc.server";
// 请求参数
message HelloReq{
    string name = 1;
}
// 返回参数
message HelloResp{
    string ret = 1;
}
// rpc service
service HelloService{
	// service中需要进行调用的具体方法
    rpc hello(HelloReq) returns (HelloResp){}
}

2.3 通过protobuf生成Java代码

插件导入成功后,点击下图选中的protobuf:compileprotbuf:compile-custom 依次生成对应的Java代码(也就是接口依赖代码)

3. server端接口具体实现

service代码如下

import io.grpc.stub.StreamObserver;
import net.devh.boot.grpc.server.service.GrpcService;
@GrpcService
public class HelloService extends HelloServiceGrpc.HelloServiceImplBase {
    @Override
    public void hello(Hello.HelloReq request, StreamObserver<Hello.HelloResp> responseObserver) {
        Hello.HelloResp resp = Hello.HelloResp.newBuilder().setRet("你好-->"+request.getName()).build();
        responseObserver.onNext(resp);
        responseObserver.onCompleted();
    }
}

4 client端接口具体实现

client端测试调用代码如下

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
public class GrpcTest {
    @Autowired
    private HelloSerivce helloSerivce;
    @Test
    public void test1() throws  Exception{
        helloSerivce.haha("牛哈哈");
    }
}

以上就是maven grpc整合springboot demo的详细内容,更多关于maven grpc整合springboot 的资料请关注编程网其它相关文章!

--结束END--

本文标题: maven grpc整合springboot demo

本文链接: https://lsjlt.com/news/147515.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作