Could not autowire. No beans of 'DishService' type found.
时间: 2023-09-25 16:14:35 浏览: 156
spring-autowire.zip
根据引用和的内容,当出现"Could not autowire. No beans of 'xxxService' type found."的错误时,可能是由于没有找到符合类型的bean。常见的解决方法是在相应的类上加上@Service注解,以确保该类被正确实例化并注入到Spring容器中。另外,也可以尝试使用@Autowired注解替换@Resource注解,因为它们有不同的注入方式。@Autowired按by type自动注入,而@Resource默认按byName自动注入。如果仍然无法解决问题,可以考虑检查是否有多个相同名称的bean存在,这可能导致冲突。
阅读全文