【IDEA | @Autowired】错误提示:Could not autowire. No beans of '*Mapper' type found.

1. 报错信息:

【IDEA | @Autowired】错误提示:Could not autowire. No beans of '*Mapper' type found._第1张图片

  • 此错误不影响运行;
  • 源自于IDEA的智能提醒功能。
2. 解决办法:

找到对应的mapper类,添加:

@Mapper
@Repository

修改之后如下:

package com.ruoyi.project.system.mapper;

import java.util.List;

import org.apache.ibatis.annotations.Mapper;	  //import class
import org.apache.ibatis.annotations.Param;

import com.ruoyi.project.system.domain.SysUser;
import org.springframework.stereotype.Repository; //import class

@Mapper		//添加注释
@Repository  	//添加注释

ic interface SysUserMapper
{
//略

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