您的位置:首页 > 移动开发

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

2017-11-10 17:38 946 查看
作为一名刚开始使用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;
}


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

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

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

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

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





解决方法来源于:http://blog.csdn.net/u012453843/article/details/54906905
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐