mybatis初始化SqlSessionFactory失败的几个原因分析

这篇文章主要介绍了mybatis初始化SqlSessionFactory失败的几个原因分析,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

mybatis初始化SqlSessionFactory失败

总结原因有几点

1.resources中的xml配置文件放错位置或者是放的太深加载不到

比如 RoleDao因为放的比较包中包中所以扫描不到

在这里插入图片描述

2.xml文件里面有错文

比如mapper namespace的相对路径有问题 导致初始化错误


在这里插入图片描述

SqlSessionFactory异常

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘sqlSessionFactory' defined in class path resource [spring/applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: ‘class path resource [mybatis]'; nested exception is java.io.FileNotFoundException: class path resource [mybatis] cannot be opened because it does not exist

sqlSessionFactory配置文件路径错误

在这里插入图片描述


在这里插入图片描述

以上为个人经验,希望能给大家一个参考,也希望大家多多支持0133技术站。

以上就是mybatis初始化SqlSessionFactory失败的几个原因分析的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java