码迷,mamicode.com
首页 > 编程语言 > 详细

传入mybatis的xml为Long型时报There is no getter for property named 'XXX' in 'class java.lang.

时间:2017-12-23 15:46:46      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:sql   comm   named   common   system   test   select   group   修改   

修改前

<select id="getGroupId" parameterType="java.lang.Long" resultType="com.capinfo.weibo.system.entity.ColumnGroup">
    SELECT * from common_columngroup c
    <where>
        <if test="accountId!=null">
            c.accountId=#{parameter} and c.type=2
       </if>
    </where>   
</select>

 

如果传入类型为Long类型,则参数需统一修改为[_parameter],修改后的sql语句如下(不管你的参数是什么,都要改成"_parameter")

<select id="getGroupId" parameterType="java.lang.Long" resultType="com.capinfo.weibo.system.entity.ColumnGroup">
    SELECT * from common_columngroup c
    <where>
        <if test="accountId!=null">
            c.accountId=#{_parameter} and c.type=2
       </if>
    </where>   
</select>

 

传入mybatis的xml为Long型时报There is no getter for property named 'XXX' in 'class java.lang.

标签:sql   comm   named   common   system   test   select   group   修改   

原文地址:http://www.cnblogs.com/zqr99/p/8093359.html

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