mybatis中對於使用like來進行模糊查詢的幾種方式:spring
(1)使用${...}sql
注意:因爲$是參數直接注入的,致使這種寫法,大括號裏面不能註明jdbcType,否則會報錯apache
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'VARCHAR' in 'class com.utry.ucsc.dao.bean.KnowledgeLibraryBean'mybatis
弊端:可能會引發sql的注入,平時儘可能避免使用${...}ide
(2)使用#{...}函數
注意:由於#{...}解析成sql語句時候,會在變量外側自動加單引號' ',因此這裏 % 須要使用雙引號" ",不能使用單引號 ' ',否則會查不到任何結果。blog
(3)使用CONCAT()函數鏈接參數形式get