我是靠谱客的博主 欣喜钻石,最近开发中收集的这篇文章主要介绍解决mybatis resultMap根据type找不到对应的包问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

mybatis resultMap根据type找不到对应的包

mybatis resultMap根据type找不到对应的包

当将包名替换为全路径名时,程序又正常运行

这里需要配置typeAliasesPackage 自动配置别名

以下是项目中原有的别名扫描,但是我新建的mapper文件夹不在此路径下,没有别名设置所以报错。

typeAliasesPackage定义多个时,用逗号分隔

加上配置后别名启用成功,程序正常运行

resultmap和resulttype的一些使用误区

mybatis的映射配置文件中的两个返回值类型resultmap和resulttype;

直接来测试代码

<select id="getUser" parameterType="string" resultType="pojo.User">
	select id,username,userpwd from t_users where id=#{id}
</select>

这是正确的,resulttype在这里是类的全类名,这样执行没有任何问题;

结果就是我们想要的。

接下来我们来定义一个<resultMap>

<resultMap id="user" type="pojo.User" >  
    <id column="id" property="id"  />  
    <result column="username" property="username" />  
    <result column="userpwd" property="userpwd"  /> 
  </resultMap> 

然后我们修改一下上面的配置

<select id="getUser" parameterType="string" resultMap="user">
	select id,username,userpwd from t_users where id=#{id}
</select>

我们把resulttype改成resultmap然后取了<resultMap>中的id;运行结果也是正常的;跟上面打印的是一样的;

接下来看一下他们之间的不同点

当看到这种错误的时候,就说明用的resulttype指定到<resultMap>中的id上去了;

  <select id="getUser" parameterType="string" resultType="user" >
		select id,username,userpwd from t_users where id=#{id}
	</select>

想让上面的配置起作用该怎么改?那就是使用别名:在mybatis-config.xml中加入

<typeAliases>
	<typeAlias alias="user" type="pojo.User"/>
</typeAliases>

这里的alias就是resulttype的值;以上只是我们书写时容易注意不到的部分。

注意:mybatis返回的类型:那一定是map类型了,就是键值对的形式返回数据;但是我们使用resulttype时,会把map中的值取出来赋值给对象的属性。

好了,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是欣喜钻石为你收集整理的解决mybatis resultMap根据type找不到对应的包问题的全部内容,希望文章能够帮你解决解决mybatis resultMap根据type找不到对应的包问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(131)

评论列表共有 0 条评论

立即
投稿
返回
顶部