使用mybatis-plus框架:@Autowired报错Could not autowire. No beans of ‘XXX‘ type found

使用mybatis-plus框架,使用xxmapper报错:
使用mybatis-plus框架:@Autowired报错Could not autowire. No beans of ‘XXX‘ type found_第1张图片
解决办法是:在mapper中添加注解:
@Repository
@Mapper
使用mybatis-plus框架:@Autowired报错Could not autowire. No beans of ‘XXX‘ type found_第2张图片
也可以使用

@Autowired
 SysRoleMenuService sysRoleMenuService;

替代

 @Autowired
  SysRoleMenuMapper sysRoleMenuMapper;

方法名不同,但效果一样。
使用mybatis-plus框架:@Autowired报错Could not autowire. No beans of ‘XXX‘ type found_第3张图片

你可能感兴趣的:(java,mybatis)