Springboot遇到的注入问题

2020-04-20  本文已影响0人  laoguigui2019

问题一:Autowired注解时报错,提示“Could not autowire. No beans of 'InfconfigDao' type found.”
解决办法:
@Autowired注入成员变量,前提是成员变量已被注入到spring容器中,注解的这个类InfconfigDao需要被Spring容器管理,需要在InfconfigDao加上@Component,把普通pojo实例化到spring容器中

image.png image.png

问题二:启动项目一直无法注入

org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.zgl.interfacetest.dao.InfconfigDao' available:
 expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound

解决办法:
SpringBoot项目的Bean装配默认规则是根据Application类所在的包位置从上往下扫描!Application类是指SpringBoot项目入口类。
这个类的位置很关键: 如果Application类所在的包为:com.zgl.interfacetest,则只会扫描com.zgl.interfacetest包及其所有子包,如果dao、service所在包不在com.zgl.interfacetest及其子包下,则不会被扫描到。
在启动类中加
@ComponentScan(basePackages = "com.zgl.interfacetest.dao")


image.png
上一篇 下一篇

猜你喜欢

热点阅读