Parameter 0 of constructor in xxx required a bean of type xxx that could not be found.

  • Post author:
  • Post category:其他


解决办法

1、主类注解加上scanBasePackages

@SpringBootApplication(scanBasePackages = {"com.hbx.xxx", "com.hbx.xxx.**.dao"})

2、dao层加上注解

@Mapper

或者

@Repository

3、在业务层Service层加上注解

@Service

或者

@Component

4、在service层注入dao的注解

@Autowired

或者

@Resource

5、把主类移到外层包下



版权声明:本文为xiaoxiaohan130原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。