這篇文章主要介紹“Mybatis 返回 One 和 List 的區(qū)分方式”,在日常操作中,相信很多人在Mybatis 返回 One 和 List 的區(qū)分方式問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Mybatis 返回 One 和 List 的區(qū)分方式”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供濱海網(wǎng)站建設(shè)、濱海做網(wǎng)站、濱海網(wǎng)站設(shè)計(jì)、濱海網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、濱海企業(yè)網(wǎng)站模板建站服務(wù),十余年濱海做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
官網(wǎng)示例:<T> T selectOne(String statement)
結(jié)果: 可能為 null。
注: 使用返回一個(gè)對(duì)象時(shí),若數(shù)據(jù)庫(kù)查詢結(jié)果超過(guò)一條 record,Mybatis 則拋出非檢查類異常
TooManyResultsException
eg. :org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
證明查詢出兩條
官網(wǎng)示例:<E> List<E> selectList(String statement)
結(jié)果: 如果沒(méi)有返回值,那么就是一個(gè)空的 list,不會(huì)出現(xiàn) null 的情況,所以使用時(shí)不用進(jìn)行判空,直接循環(huán)處理即可。
The difference between selectOne and selectList is only in that selectOne must return exactly one object or null (none). If any more than one, an exception will be thrown. If you don't' know how many objects are expected, use selectList. If you want to check for the existence of an object, you're better off returning a count (0 or 1). The selectMap is a special case in that it is designed to convert a list of results into a Map based on one of the properties in the resulting objects. Because not all statements require a parameter, these methods are overloaded with versions that do not require the parameter object. The value returned by the insert, update and delete methods indicate the number of rows affected by the statement.
<T> T selectOne(String statement) <E> List<E> selectList(String statement) <K,V> Map<K,V> selectMap(String statement, String mapKey) int insert(String statement) int update(String statement) int delete(String statement)
到此,關(guān)于“Mybatis 返回 One 和 List 的區(qū)分方式”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
本文名稱:Mybatis返回One和List的區(qū)分方式
網(wǎng)頁(yè)URL:http://aaarwkj.com/article22/jpoojc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、小程序開發(fā)、網(wǎng)頁(yè)設(shè)計(jì)公司、響應(yīng)式網(wǎng)站、自適應(yīng)網(wǎng)站、網(wǎng)站維護(hù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)