Mybatis自定义别名
平时我们写Mapper.xml配置时 resultType="com.Google.pojo.User"这个长长的名字会花费大量的时间
所以,我们要‘偷懒’
第一种,Mybatis会自动扫描com.Google.pojo这个包,要使用这个包中的类,在Mapper.xml中配置相应的类就可以了
<typeAliases>
<package name="com.Google.pojo"/><!--给实体类取别名-->
</typeAliases>
第二种,这个需要精确到类(不推荐)
<typeAliases>
<typeAlias type="com.Google.pojo.User" alias="user"/>
</typeAliases>