目录mybatis resultMap根据type找不到对应的包mybatis resultMap根据type找不到对应的包这里需要配置typeAliasesPackage 自动配置别名typeAliasesPackage定义多个时,用逗号
当将包名替换为全路径名时,程序又正常运行
以下是项目中原有的别名扫描,但是我新建的mapper文件夹不在此路径下,没有别名设置所以报错。
mybatis的映射配置文件中的两个返回值类型resultmap和resulttype;
<select id="getUser" parameterType="string" resultType="pojo.User">
select id,username,userpwd from t_users where id=#{id}
</select>
这是正确的,resulttype在这里是类的全类名,这样执行没有任何问题;
结果就是我们想要的。
<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中的值取出来赋值给对象的属性。
好了,希望能给大家一个参考,也希望大家多多支持编程界。
--结束END--
本文标题: 解决mybatis resultMap根据type找不到对应的包问题
本文链接: https://lsjlt.com/news/85.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0