mybatis中条件表达式if的test为字符串时值比较
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中条件表达式if的test为字符串时值比较相关的知识,希望对你有一定的参考价值。
mybatis中条件表达式字符串用‘‘单引号不能直接比较,需要加toString()
<if test="param != null and param != ‘hello‘.toString()" >
或者用""双引号
<if test=‘param != null and param != "hello" ‘ >
以上是关于mybatis中条件表达式if的test为字符串时值比较的主要内容,如果未能解决你的问题,请参考以下文章