Could not autowire. No beans of 'CategoryService' type found.
时间: 2023-11-17 10:48:25 浏览: 56
spring-autowire.zip
这个问题是因为在自动装配时找不到'CategoryService'类型的bean。解决这个问题有几种方法:
1. 确保'CategoryService'类上有@Service注解,这样Spring会将其实例化为bean并添加到应用上下文中。
2. 确保'CategoryService'类所在的包被正确扫描到。可以在启动类上使用@ComponentScan注解指定要扫描的包路径,确保包含了'CategoryService'所在的包。
3. 如果'CategoryService'是从外部依赖导入的,可以检查外部依赖的配置是否正确,是否正确导入了该包。
请问还有其他问题吗?
阅读全文