
MyBatis
程序小白-M
如果你真的愿意去努力,你人生最坏的结果,也不过是大器晚成。
展开
-
MyBatis-mapper.xml中判断list集合是否包含指定数据
表示方法如下<if test="list.contains()"> //...</if>示例<if test="list.contains(0)"> //...</if>其中比较整数contains(0)比较字符串contains("X")只能是双引号,而不能是单引号,因为java做了强制类型比较,而双引号需要用转义字符"...原创 2019-12-19 20:47:28 · 12386 阅读 · 1 评论 -
MyBatis-mapper.xml中if else 写法
MyBatis中没有else需要用chose when otherwise 代替,其中when 表示一个if语句otherwise 表示if语句的else语句表示方法如下<choose> <when test=""> //... </when> <otherwise> //... ...原创 2019-12-18 17:45:56 · 11702 阅读 · 0 评论