Could not autowire. No beans of 'xxxMapper' type found.

来源:互联网 发布:淘宝开代购店 编辑:程序博客网 时间:2024/06/07 14:40

作为一名刚开始使用idea的新手,最近在使用maven+springMVC框架时遇到了这样一个问题:Could not autowire. No beans of ‘xxxMapper’ type found.
这是在实现xxxService接口时,自动注入xxxMapper时,出现的错误。
(╯‵□′)╯︵┴─┴

package com.zm.mlog.service.impl;import 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 {    @Autowired    private AdminMapper adminMapper;}

看了很久的代码,实在是没发现问题。甚至把代码拿到eclipes跑,没问题。
┬─┬ ノ( ’ - ‘ノ) {摆好摆好)
(再掀一次} (╯°Д°)╯︵ ┻━┻
当然此时已经意识到不是代码的问题,灵机一动一百度果然如此。(:з」∠)
好了不皮了,解决方法如下:
这里写图片描述

这里写图片描述

解决方法来源于:http://blog.csdn.net/u012453843/article/details/54906905

阅读全文
0 0
原创粉丝点击