问题描述
- 一个错一上午还没解决mybatis配置文件出错
-
这是什么问题啊。困扰我一早上了,看提示是找不到这个文件,但是路径没错啊`SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [resource/spring-mybatis.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:srpingquartz-demo.metadata.pluginsorg.eclipse.wst.server.coretmp0wtpwebappsTest Maven WebappWEB-INFclassescomfishoaddaoUserMapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'com.fishroad.vo.User'. Cause: java.lang.ClassNotFoundException: Cannot find class: com.fishroad.vo.User
解决方案
建议吧这个配置文件贴出来看看。异常显示Could not resolve type alias 'com.fishroad.vo.User'.检查下这个类的全称是不是拼写正确呢?
解决方案二:
com.fishroad.vo.User 这个类不存在,是不是这个类路径写的不对
解决方案三:
com.fishroad.vo.User 这个类不存在,是不是这个类路径写的不对
解决方案四:
关于spring和mybatis的集成配置,可参考:http://git.oschina.net/wangkang/llsfw
希望能够帮到你.