使用springboot在grpc实现中获取“ can't invoke this.repositoryname is null”

Getting " can not invoke this.repositoryname is null" in grpc implementation with springboot

提问人:Sku 提问时间:5/2/2023 最后编辑:vimuthSku 更新时间:5/2/2023 访问量:166

问:

Repository null error
Grpc implementation

我已经在springboot应用程序中实现了GRPC,并收到错误null并尝试与MySQL连接。 在personDetailImpl中,我已经自动连接了存储库。并尝试从 impl 类中的数据库中获取数据。但是得到错误。 [ “无法调用 this.repository.methodname,因为 this.repository 为 null。

任何人都可以有一个解决方案,我们如何通过自动连接存储库将 grpc 与 MySQL 连接起来。

java mysql spring-boot nullpointerexception grpc

评论

0赞 Ishan 5/2/2023
你的类没有标记任何注释,比如 or 或其他东西,所以 Spring IOC 不会实例化和初始化它。PersonDetailImpl@Component@Service
0赞 Ishan 5/2/2023
另外,请复制粘贴格式化代码、错误堆栈跟踪等,而不是附加图像。从问题中搜索和复制粘贴详细信息要容易得多。
0赞 Sku 5/2/2023
@ishan尝试使用服务和组件注释。但它仍然不起作用。
0赞 Ishan 5/2/2023
对象是如何在课堂上注入的?复制粘贴该代码片段(作为格式化文本,而不是图像)PersonDetailImplPersonsDetailsGrpc
0赞 Rafael Souza 8/21/2023
我有同样的问题,有人找到解决方案了吗?

答: 暂无答案