在UserMapper上添加@Component即可 @ComponentpublicinterfaceUserMapper { List<User>selectAll(); User selectUserById(intid); } 实际上不加也能正常运行,可以在IDE中将警告关闭。
IDEA springboot 无法自动装配,未找到 'UserMapper' 类型的 Bean,在UserMapper上添加@Component即可@ComponentpublicinterfaceUserMapper{List<User>selectAll();UserselectUserById(intid);}实际上不加也能正常运行,可以在IDE中将警告关闭。...