使用SpringBoot整合JSONRPC出required a bean of type ‘com.imooc.api.ProductRpc‘ that could not be found错误

概述

首先需要注意的是,项目使用的是grandle构建的

注意项目结构目录

在整个项目结构目录中要和主目录com.imooc.manager结构形式保持一致,开始的时候写成了com.imooc为此无法找到ProductRpc类进行注入
使用SpringBoot整合JSONRPC出required a bean of type ‘com.imooc.api.ProductRpc‘ that could not be found错误
使用SpringBoot整合JSONRPC出required a bean of type ‘com.imooc.api.ProductRpc‘ that could not be found错误

注意JSONRPC中的配置

在JSONRPC中,要将类配上@Bean注解,交给Spring进行管理
使用SpringBoot整合JSONRPC出required a bean of type ‘com.imooc.api.ProductRpc‘ that could not be found错误