mybatis中條件表達式if的test爲字符串時值比較

mybatis中條件表達式字符串用''單引號不能直接比較,須要加toString()mybatis

<if test="param != null and param != 'hello'.toString()" >

或者用""雙引號ide

<if test='param != null and param != "hello" ' >
相關文章
相關標籤/搜索