autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found.

关于这类组件注解

关键点来了下面这四点实际上效果是一样的都是注入到容器中,不过在不同的包名内最好按规范来写:

@Repository:代表dao层

@Component:这个惯用实体层

@Service : 这个用于service层

@Controller : 这个用于Controller

配上以上注解自自动装配时@Autowired 才不会报找不到错误
这四个注解的功能都是一样的,都是代表某个类注册到Spring中,装配到Bean中

  1. 在*xxMapper.java文件中添加注释@Repository 代表持久层
    这是对应于直接调xxxMappe类的,按照上方的组件对应信息自己修改(规范书写,对应需求)
    autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found._第1张图片
    在这里插入图片描述
  2. 使用方式在控制层调用 @Autowired(required = false)忽略错误
    autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found._第2张图片
    autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found._第3张图片

前面的两种方式如果出现Consider defining a bean of type ‘com.xiaotang.test.service.UserService’ in your configuration.

在有注解配置情况下,加入自动扫描去识别
autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found._第4张图片
在这里插入图片描述

mapper 报错

autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found._第5张图片

方法1:在mapper文件上加@Repository注解,这是从spring2.0新增的一个注解,用于简化 Spring 的开发,实现数据访问
方法2:在mapper文件上加@Component注解,把普通pojo实例化到spring容器中,相当于配置文件中的

service报错

autoWired注解报错 Could not autowire. No beans of ‘xxxService‘ type found._第6张图片

看实现类impl有没有@Service注解 

解决方法:在实现类impl文件上加@Service注解

你可能感兴趣的:(报错debug,spring,java)