Error creating bean with name 'contentCategoryController': Injection of autowired dependencies failed;

时间:2022-03-13 17:26:30

在springmvc、spring、mybatis搭建的工程中出现了一大串错误

Error creating bean with name 'contentCategoryController': Injection of autowired dependencies failed;

查了代码后发现,原来是在ContentCategoryServiceImpl中忘了写一句话@Service(),以至于因此导致一系列错误。

在控制层调用业务层,必须在业务层先进行注解:

Error creating bean with name 'contentCategoryController': Injection of autowired dependencies failed;

然后在控制层注入业务层:

Error creating bean with name 'contentCategoryController': Injection of autowired dependencies failed;