org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.Reflecti

本文探讨了一个关于MyBatis框架中动态SQL的问题,即如何正确使用if标签进行条件判断,特别是在使用字符串参数时避免出现反射异常的情况。文章给出了具体的解决方案,并提醒开发者注意标签使用的适用场景。
摘要由CSDN通过智能技术生成
<select id="queryPlanClustersCount" resultType="java.lang.Integer" parameterType="java.lang.String">
    SELECT COUNT(DISTINCT cluster_name) AS total
    FROM plan_cluster
    <where>
        <if test="product != null and product != ''">
            product_class = #{product}
        </if>
    </where>
    /*WHERE product_class = #{product}*/
</select>
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'product' in 'class java.lang.String' 

结论: 
把if判断标签去掉就可以了,标签是针对JAVABEAN或者MAP的,String不能用标签
单用String 用if判断就会报这个错误 并且没办法解决 目前不支持。 把标签去了,那就用不了动态语句了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值