码迷,mamicode.com
首页 > 其他好文 > 详细

015_myBatis形参是字符串的错误

时间:2020-03-16 09:17:32      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:log   message   _id   select   tle   name   字符   where   @param   

There is no getter for property named ... in ‘class java.lang.String‘

在使用mybaitis传参数的时候,如果仅传入一个类型为String的参数,那么在 xml文件中应该使用_parameter来代替参数名。

正确的写法:

<select id="getDeptInfo" parameterType="String" resultType="com.gskdht.pushmessage.model.DeptInfo">
SELECT DEPT_ID,PARENT_ID,DEPT_NAME,DEPT_LEVEL from PARA_DEPT
<where>
<if test="_parameter != ‘1‘.toString() ">
PARENT_ID = #{_parameter}
</if>
</where>

</select>

错误的写法:

<select id="getDeptInfo" parameterType="String" resultType="com.gskdht.pushmessage.model.DeptInfo">
SELECT DEPT_ID,PARENT_ID,DEPT_NAME,DEPT_LEVEL from PARA_DEPT
<where>
<if test="parentId != ‘1‘.toString() ">
PARENT_ID = #{parentId}
</if>
</where>

</select>


也可以在mapper的接口中,给这个方法的参数加上@Param(value=“parentId”),这样就能在.xml中使用#{parentId} 了。

如:public List<DeptInfo> getDeptInfo(@Param("parentId") String parentId)

这样也是可以的。
————————————————
版权声明:本文为CSDN博主「ybcljay」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/ybcljay/article/details/80831607

015_myBatis形参是字符串的错误

标签:log   message   _id   select   tle   name   字符   where   @param   

原文地址:https://www.cnblogs.com/pogusanqian/p/12501776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!