mybatis工作日常記錄

優雅實現模糊搜索

參考來源

具體代碼:

	<bind name="patter" value="'%' + articleTitle + '%'"></bind>
	and t2.article_title like #{patter}

在這裏插入圖片描述

mybatis query integer 0 null

mybatis查詢的時候 如果屬性值爲0,且屬性類型爲Integer,那麼service拿到對象值得時候會null,如何處理?

  • 屬性類型改成Long類型
  • IFNULL( t3.help_value, 0 ) AS "helpValue"

tkmybatis 支持聚合函數等

聚合函數使用

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章