您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關mybatis如何傳入null值的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
前端傳入兩個值,如果其中一個為null時,很多時候我們都很困惑,明明傳入的是null,為啥mybatis 的xml文件中的if條件判斷無效?
public String getPersonInfo(@PathParam("Name") String Name, @PathParam("IDCard") String IDCard)
public List<Map> getPersonInfo(@Param("name") String name, @Param("idcard") String idcard);
<if test="name == null or name == '0'.toString()"> <![CDATA[ and (b.identity_id = #{idcard,javaType=String,jdbcType=VARCHAR}) group by name,id_card,birthTime,sex ]]> </if>
每次執行都是失敗的,網上很多都說要在dao層添加@param注解和xml文件內容中要加入jdbcType類型就能解決,最后還是沒解決
其實還有一個點忽略了,就是傳入時的null值其實是個字符串null,根本就不是null,它是個字符串null
if (Name == null || "null".equalsIgnoreCase(Name)) { Name = null; } if (IDCard == null || "null".equalsIgnoreCase(IDCard)) { IDCard = null; }
問題解決!
今天遇到個很弱智的問題,以此記錄!時刻提醒自己
public int delExhibion(List<String> ids){ Integer result = null; ExhibitionManager exhibitionManager = new ExhibitionManager(); for (String id : ids){ exhibitionManager.setId(id); exhibitionManager.setDelFlag("1"); result += exhibitionManagerMapper.delete(id); } return result; }
發現老是執行 delete 的時候 ,老是報 空指針異常
然后嘗試使用: @Param 給參數加上命令
int delete(@Param("id") String id);
結果還是不行,
然后在嘗試使用:對象傳參,這樣總該注入進去了吧
int delete(Object dx);
結果還是不行,
然后在嘗試使用:Mybatis 單個參數動態語句引用:
是當我們的參數為String時,在sql語句中#{id} 會去我們傳進來的參數調getId()方法獲取參數,很明顯,String沒有對應的方法,所以報錯了,那我們這里要如何引用id呢,需要采用下面的寫法:
<delete id="delete" parameterType="java.lang.String" > SELECT * FROM table <where> <if test="_parameter != null"> AND id= #{id} </if> </where> </select>
單Mybatis傳參為單個參數時,在sql語句中需要使用 _parameter 來引用這個參數
結果還是不行。
public int delExhibion(List<String> ids){ Integer result = null; for (String id : ids){ result += exhibitionManagerMapper.delete(id); } return result; }
Integer result 我給他設置默認值 為null, 并且還讓 reuslt 這個對象 result +=
加等于在執行數據庫操作返回結果時 用 result 去接收。 這不就一定是空指針了嗎。
我給 Integer result = 0; 設置個默認值為0 那也不會出現這種情況!
或者 result = 給result 初始化賦值 也不會報 空指針異常! 不過這樣做在我的業務中是不對的哦。 只是不會報錯. 但是獲取不到我想要的執行成功條數
Integer result = null; result = exhibitionManagerMapper.delete(id);
真的是被自己氣到了。以此記錄!時刻提醒自己
public int delExhibion(List<String> ids){ Integer result = 0; for (String id : ids){ result += exhibitionManagerMapper.delete(id); } return result; }
感謝各位的閱讀!關于“mybatis如何傳入null值”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。