本文主要是介绍项目纠错 http404 Not found the original server didn‘t find a current Mybatis中不能出现函数重载,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-
1.总结
-
出现这类报错的时候,首先是定位错误的位置,通过两个方式,比如网页F12或者查看Eclipse(也可以是其他编程开发工具)查看console控制台打印了什么信息
-
学会看错误,最快速度确定bug出现在哪个文件.java 还是.xml
- 如此大概就可以了解错误的出处
- 独立思考、百度 选择关键字。或者请教大神
-
2.这次报错是Mybatis中不能出现函数重载,在configuration.xml配置的时候会出现问题。目前暂时还没有解决方案
-
解决途径:将重载函数的名字,换成其他不重复的函数名
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'class path resource [tk/mybatis/web/mapper/PensionMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. Cause: java.lang.IllegalArgumentException: Mapped Statements collection already contains value for tk.mybatis.web.mapper.PensionMapper.selectall
3.org.springframework.beans.factory.BeanCreationException:
这篇关于项目纠错 http404 Not found the original server didn‘t find a current Mybatis中不能出现函数重载的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!