Mybatis报错 Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'UserEntity'

1年多没用Mybatis,闲来无事去官网照着文档单独配置个MyBatis跑着玩玩,结果不是很顺利。

1.报错原因

 The error may exist in mapper/UserMapper.xml
### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'mapper/UserMapper.xml'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'UserEntity'.  Cause: java.lang.ClassNotFoundException: Cannot find class: UserEntity
	at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
	at org.apache.ibatis.session.SqlSessionFactoryBuilder.build(SqlSessionFactoryBuilder.java:80)
	at org.apache.ibatis.session.SqlSessionFactoryBuilder.build(SqlSessionFactoryBuilder.java:64)
	at com.danielei.config.SqlSessionConfig.sqlSessionFactory(SqlSessionConfig.java:15)
	at com.danielei.Test.main(Test.java:17)

2.Mapper文件配置如下





    

报错原因是这个 resultType=“UserEntity”找不到,Mybatis解析的时候出错,找不到对应的类。

查找了一下源码,发现是没有配置typeAliases,也就是mybatis-config.xml中没有这个标签。




    
        
    
       省略其它。。。

这个标签的作用是扫描指定包下面的实体类,对只是这个包下的实体类,因为Mybatis用endsWith(".class")判断是否.class文件名结尾的,Mybatis会把这些实体类注册进去,说白了就是放在一个HashMap中 put进去,key默认是小写原类名(userentity)mybatis转换为小写的,value就是UserEntity的实例。
还在源码中看到 如果在实体类中加入@Alias(“customUser”)那么注册的实体类名就是这个自定义的名称。
如图
Mybatis报错 Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'UserEntity'_第1张图片
Mybatis报错 Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'UserEntity'_第2张图片
为什么resultType:只需要打上实体类的名称就能用了,那是因为Mybatis底层解析mybatis-config.xml根据你的typeAliases配置去扫描了包,并放在了一个HashMap中key为类名(Mybatis会把类名转为小写)value就是类实例,如果不配置typeAliase打上简单类名,然后Mybatis去Map中找是否有这个key,如果没有那么就反射实例出来,因为不是完整包路径+类名所以反射实例类就会提示找不到UserEntity,必须是完整包路径+类名。
总结:
1.mybatis-config.xml中配置typeAliases 扫描实体类包路径,Mapper.xml中resultType属性可以打简单类名。
2.没在mybatis-config.xml配置typeAliases那么Mapper.xml中resultType请改为 包路径+类名,就是这么简单。

你可能感兴趣的:(Mybatis)