spring grpcAuthenticationReader错误每当试图启动我的服务器

e3bfsja2  于 2023-09-29  发布在  Spring
关注(0)|答案(1)|浏览(197)

我刚刚集成了一个GRPC服务器到我的用户应用程序,但每当我试图启动我的应用程序,我得到以下错误。我无法找到有关此错误的适当日志,因为网上没有太多信息。

Description:

Parameter 1 of method authenticatingServerInterceptor in net.devh.boot.grpc.server.autoconfigure.GrpcServerSecurityAutoConfiguration required a bean of type 'net.devh.boot.grpc.server.security.authentication.GrpcAuthenticationReader' that could not be found.

Action:

Consider defining a bean of type 'net.devh.boot.grpc.server.security.authentication.GrpcAuthenticationReader' in your configuration.

发布的错误已经解决,可以在下面的答案中找到

oprakyz7

oprakyz71#

找到了解决方案,只需添加:

@Bean
  public  GrpcAuthenticationReader grpcAuthenticationReader(){
    return new BasicGrpcAuthenticationReader();
  }

在我的SpringSecurityConfig文件中。
引用自这里:https://yidongnan.github.io/grpc-spring-boot-starter/en/server/security.html

相关问题