Spring框架十一种常见异常的解决方法汇总

时间:2021-05-20

在程序员生涯当中,提到最多的应该就是SSH三大框架了。作为第一大框架的Spring框架,我们经常使用。

然而在使用过程中,遇到过很多的常见异常,我在这里总结一下,大家共勉。

一、找不到配置文件的异常

org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [com/herman/ss/controller]; nested exception is java.io.FileNotFoundException: class path resource [com/herman/ss/controller] cannot be opened because it does not exist

解释:这个的意思是说,没有找配置文件为controller的xml,修改一下配置文件名字即可。

<init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:com/herman/ss/config/testAjax.xml</param-value> </init-param>

二、在xml中配置的命名空间找不到对应的Schema的异常

nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'util:list'. xmlns:util="http://ponent-scan>包下面用*匹配

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章