Could not autowire. No beans of 'IUserService' type found.
时间: 2023-11-17 15:58:22 浏览: 29
No bean named 'user' available
5星 · 资源好评率100%
这个错误提示是因为在使用@Autowired注解时,Spring无法找到对应的IUserService类型的bean。解决方案有以下几种:
1. 确认是否已经在Spring容器中注册了IUserService类型的bean。
2. 确认IUserService类型的bean的命名是否正确。
3. 将@Autowired改为@Autowired(required = false),这样即使找不到对应的bean也不会报错,但需要在代码中进行判空处理。
希望这些解决方案能够帮助你解决问题。
阅读全文