美文网首页
【学习笔记】Mybatis 参数问题

【学习笔记】Mybatis 参数问题

作者: zatk | 来源:发表于2017-06-19 15:21 被阅读0次

Mybatis中传参包There is no getter for property named 'XXX' in 'class java.lang.String'

解决方案:
1.<if test = " _parameter!=null and_parameter!='' "></if>
无论参数名,都要改成"_parameter"。
2.在Dao层参数前添加@Parameter
(一个参数的时候不需要加,两个参数的时候需要加)

Mybatis if test中字符串比较

<if test=" name=='你好' "><if>这样会有问题
解决方案:
1.<if test=' name=="你好" '><if>
2.<if test=" name=='你好'.toString()">

参考文章:
1.Mybatis中传参包There is no getter for property named 'XXX' in 'class java.lang.String'
2.Mybatis if test中字符串比较

相关文章

网友评论

      本文标题:【学习笔记】Mybatis 参数问题

      本文链接:https://www.haomeiwen.com/subject/hqggqxtx.html