作为一名刚开始使用idea的新手,最近在使用maven+springMVC框架时遇到了这样一个问题:Could not autowire. No beans of ‘xxxMapper’ type found.

这是在实现xxxService接口时,自动注入xxxMapper时,出现的错误。

(╯‵□′)╯︵┴─┴

package com.zm.mlog.service.impl;IDEAimport com.zm.mlog.mapper.AdminMapper;import com.zm.mlog.service.AdminService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;@Service("adminService")public class AdminServiceImpl implements AdminService {@Autowiredprivate AdminMapper adminMapper;
}


看了很久的代码,实在是没发现问题。甚至把代码拿到eclipes跑,没问题。

┬─┬ ノ( ’ - ‘ノ) {摆好摆好)

(再掀一次} (╯°Д°)╯︵ ┻━┻

当然此时已经意识到不是代码的问题,灵机一动一百度果然如此。(:з」∠)

好了不皮了,解决方法如下:

IDEACould not autowire. No beans of

IDEACould not autowire. No beans of