概述
记录一下在公司开发中遇到的问题
在使用 mapper.xml 进行编写时 resultMap=“String” String竟然引用不进去,在程序中标红,别的mapper中也映射过但是别的就好使,然后重新启动的时候代码执行报错
<select id="queryAreaBy" parameterType="String" resultType="String">
select SUM(area) as area from tb_forward_area where
server_time = #{serverTime}
and
region_code like concat('%',#{regionCode},'%')
and del_flag='0'
</select>
这时需要 在resultType 中引入绝对路径
<select id="queryAreaBy" parameterType="String" resultType="java.lang.String" >
select SUM(area) as area from tb_forward_area where
server_time = #{serverTime}
and
region_code like concat('%',#{regionCode},'%')
and del_flag='0'
</select>
代码也不报错了也可以正常使用了,第二天继续编写项目时,试了下把 java.lang. 这个路径删了他也好使了,但是在同一个mapper中别的SQL想使用String或者Long类型的还需要引入绝对路径
最后
以上就是清新书本为你收集整理的mapper.xml中resultType映射类型的问题的全部内容,希望文章能够帮你解决mapper.xml中resultType映射类型的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复