服务器之家

服务器之家 > 正文

解决mybatis resultMap根据type找不到对应的包问题

时间:2021-12-03 14:53     来源/作者:dongxiexiaoadou

 

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

解决mybatis resultMap根据type找不到对应的包问题

mybatis resultMap根据type找不到对应的包,当将包名替换为全路径名时,程序又正常运行

解决mybatis resultMap根据type找不到对应的包问题

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

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

解决mybatis resultMap根据type找不到对应的包问题

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

解决mybatis resultMap根据type找不到对应的包问题

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

解决mybatis resultMap根据type找不到对应的包问题

 

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在这里是类的全类名,这样执行没有任何问题;

解决mybatis resultMap根据type找不到对应的包问题

结果就是我们想要的。

接下来我们来定义一个<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;运行结果也是正常的;跟上面打印的是一样的;

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

解决mybatis resultMap根据type找不到对应的包问题

当看到这种错误的时候,就说明用的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中的值取出来赋值给对象的属性。

好了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/dongxiexiaoadou/article/details/107047878

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部