我需要添加一个GRPC服务,但是我的应用程序在Spring启动时使用以下代码运行:
@SpringBootApplication
@EnableCaching
public class MyApplication {
public static void main(String[] args) throws IOException, InterruptedException {
ConfigurableApplicationContext server = SpringApplication.run(MyApplication.class, args);
}
}
在这段代码中,可以看到如何添加服务:
Server greetingServer = ServerBuilder.forPort(8080)
.addService(ServerInterceptors.intercept(new GreetingServiceImpl(), jwtInterceptor, new TraceIdServerInterceptor()))
.build();
greetingServer.start();
但是这种方式不能在春季启动方式中启用。
如何从Sring引导代码添加GRPC服务?
提前致谢。
我没有实操过,可以考虑这样试试 添加spring-boot-starter-grpc
<dependency>
<groupId>com.anoyi</groupId>
<artifactId>spring-boot-starter-grpc</artifactId>
<version>1.1.2.RELEASE</version>
</dependency>
添加配置
spring:
grpc:
enable: true
port: 8080 -- 即grpc与springboot共用端口
然后以正常的@SpringBootApplication启动
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。