首页 > 编程语言 > 详细

Mybatis 报错 There is no getter for property named '***' in 'class java.lang.String'

时间:2017-09-04 19:24:16      阅读:309      评论:0      收藏:0      [点我收藏+]

  在mapper.xml中 , 如果单参数是String类型 , 且在sql语句中对参数进行了判断 , 如下 when 中的判断 , 如果出现 if 判断也是一样的。都需要把判断中的参数用 _parameter 来代替 ,。

  另外orcal中判断字段是否为空需要使用 is null , 同理,判断不为空使用 is not null 。

  错误查询:

<select id = "select"  resultMap="ResultMap" parameterType="String">
select
name,code,parent,level
from
table
<where>
<choose>
<when test="code != null and code !=‘‘">
and code = #{code}
</when>
<otherwise>
and code is null
</otherwise>
</choose>
</where>
</select>

  正确查询:


<select id = "select" resultMap="ResultMap" parameterType="String">
select
name,code,parent,level
from
table
<where>
<choose>
<when test="_parameter !=null and _parameter !=‘‘">
and code = #{code}
</when>
<otherwise>
and code is null
</otherwise>
</choose>
</where>
</select>

Mybatis 报错 There is no getter for property named '***' in 'class java.lang.String'

原文:http://www.cnblogs.com/gczmn/p/7475113.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!