关于出现 Error creating bean with name 'sqlSessionFactory' defined in URL的错误

今天在做项目时出现了org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘sqlSessionFactory’ defined in URL [jar:file:/E:/Maven/maven_repository/com/tengyouhui/tyh-manager-dao/1.0-SNAPSHOT/tyh-manager-dao-1.0-SNAPSHOT.jar!/spring/spring-dao.xml]: Invocation of init method failed; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/classpath*:mybatis/SqlMapConfig.xml]这个错误,折腾了非常久,百度了很多文章,最后才找到了错误,决定在这里记录一下。

错误原因:
关于出现 Error creating bean with name 'sqlSessionFactory' defined in URL的错误_第1张图片创建SqlSessionFactoryBean对象时,配置configLocation属性加载其他Mybatis文件时,属性的值一定不要写classpath*,只能写classpath,否则就出现上面的错误(把两个文件放在同一个模块下就不需要使用classpath*了)。

你可能感兴趣的:(java框架)