Could not autowire. No beans of '*Mapper' type found.

出现的问题原因:

 原因可能有两个,

1. 是IntellijIDEA本身工具的问题。

2. 导入@Service包的时候导入包错误造成的

解决办法:

 针对第1种原因,解决办法是:降低Autowired检测的级别,将Severity的级别由之前的error改成warning或其它可以忽略的级别。

Could not autowire. No beans of '*Mapper' type found._第1张图片

第2种原因,解决方案当然是导入正确的包。首先我们来看下最容易导入的错误包,如下所示:

import com.alibaba.dubbo.config.annotation.Service;

   正确的包应该是下面这个
import torg.springframework.stereotype.Service;

 

 

 

 

你可能感兴趣的:(日常工作记录)