Java中的Spring+Mybatis整合时出现找不到spring-mybatis.xml文件

    最后我的解决办法是把src/main/resources删了,再重新建一个src/main/resources文件夹,再把配置文件,即spring-mybatis.xml文件粘贴进去,结果测试dao时就好了。应该是我的eclipse的配置有问题,导致出现这问题,它也是困扰我三、四天的时间呀。我记录下,给遇到类似问题的朋友一点帮助。

    错误信息是:org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [spring-mybatis.xml]; nested exception is java.io.FileNotFoundException: class path resource [spring-mybatis.xml] cannot be opened because it does not exist.

你可能感兴趣的:(java)