我刚刚集成了一个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.
发布的错误已经解决,可以在下面的答案中找到
1条答案
按热度按时间oprakyz71#
找到了解决方案,只需添加:
在我的SpringSecurityConfig文件中。
引用自这里:https://yidongnan.github.io/grpc-spring-boot-starter/en/server/security.html