如何利用 Armeria 出色的 JSON 到 GRPC 转码功能到 springboot 项目

发布于 2025-01-11 10:20:13 字数 168 浏览 0 评论 0原文

我们有一个现有的 springboot 项目,它的 API 管理系统很糟糕。所以我们想做一些类似于 grpc-gateway 相关的工作。但我们不想将 sidecar 添加到我们现有的服务中。我们发现Armeria有一个很棒的json grpc转码功能。我们如何将这个东西利用到我们现有的 Spring Boot 项目中。

We have a existing springboot project which has terrible API management system. So we wanna do something like grpc-gateway related work. But we don't want to add sidecar to our existing service. We found that Armeria has a wonderful json grpc transcoding function. How do we leverage this thing to our existing spring boot project.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁把谁当真 2025-01-18 10:20:13

我们发现Armeria有很棒的json grpc转码功能。

我想一个最小的例子可能如下所示:

    final GrpcService grpcService = GrpcService.builder()
        .addService(new MyGrpcService())
        .enableHttpJsonTranscoding(true) // enable http json transcoding
        .build();
    final ServerBuilder sb = Server.builder();
    sb.service(grpcService).serviceUnder("/foo", grpcService); // add the grpc service to the server
    final Server server = sb.build();
    Runtime.getRuntime().addShutdownHook(new Thread(() -> {
        server.stop().join();
    }));
    server.start().join(); // start the server

我们如何将这个东西利用到我们现有的 Spring Boot 项目中。

Armeria 还提供 spring-boot 集成。可以在以下存储库中找到示例。

您还可以在 slackgithub issues 如果您有任何其他/后续问题。

We found that Armeria has a wonderful json grpc transcoding function.

I guess a minimal example may look like the following:

    final GrpcService grpcService = GrpcService.builder()
        .addService(new MyGrpcService())
        .enableHttpJsonTranscoding(true) // enable http json transcoding
        .build();
    final ServerBuilder sb = Server.builder();
    sb.service(grpcService).serviceUnder("/foo", grpcService); // add the grpc service to the server
    final Server server = sb.build();
    Runtime.getRuntime().addShutdownHook(new Thread(() -> {
        server.stop().join();
    }));
    server.start().join(); // start the server

How do we leverage this thing to our existing spring boot project.

Armeria also offers spring-boot integration. An example can be found in the following repository.

You can also ask at slack or github issues if you have any additional/follow up questions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文