传入mybatis的xml为Long型时报There is no getter for property named 'accountId' in 'class java.lang.
<selectid="getGroupId"parameterType="java.lang.Long"resultType="com.capinfo.weibo.sys...
<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=#{accountId} and c.type=2
</if>
</where>
</select>
xml是这么写的 展开
SELECT * from common_columngroup c
<where>
<if test="accountId!=null">
c.accountId=#{accountId} and c.type=2
</if>
</where>
</select>
xml是这么写的 展开
展开全部
如果传入类型为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>
展开全部
parameterType="java.lang.Long" 吧这个改为long 或者int 试下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
参数中没有传入 accountId
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-05-17
展开全部
类里面,也要对应啊
追问
类里面是对应的啊,也有setget方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询