Error creating bean with name 'xxxxController'

Error creating bean with name ‘xxxxController’ 问题解决

在网上搜索了很久,发现基本都是说Service层没有写注解,不过经过仔细查找,我是写了注释的,最后一直缩小范围,找到了问题所在:
web.xml文件下面配置自动加载SpringIoC容器时用错了包–
错误代码:
Error creating bean with name 'xxxxController'_第1张图片
正确代码:
Error creating bean with name 'xxxxController'_第2张图片
具体的ContextLoaderListener和ContextCleanupListener的区别可以参考这篇文章:https://blog.csdn.net/ccdust/article/details/50993922

你可能感兴趣的:(Error creating bean with name 'xxxxController')