Controller层 错误提示:Could not autowire. No beans of ‘StudentService’ type found
Could not autowire. No beans of 'StudentService' type found
原因一:可能是你的Spring.xml配置文件里面自动扫描包的位置出错了
Could not autowire. No beans of 'StudentService' type found
如图,把自动扫描的位置固定在controller里面了,所以扫描不到其他的文件,应把路径范围扩大

原因二:service层的实现类没有加@Service
Could not autowire. No beans of 'StudentService' type found

相关文章: