這篇文章給大家介紹MyBatis中@param注解參數(shù)類(lèi)型錯(cuò)誤異常如何解決,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)專(zhuān)注于企業(yè)全網(wǎng)營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、城陽(yáng)網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、html5、商城網(wǎng)站制作、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為城陽(yáng)等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。我感覺(jué)可能使用用到了mybatis的關(guān)鍵字,所以就把threshold換了個(gè)名字,果然好了。
某些關(guān)鍵詞,mybatis會(huì)認(rèn)為是某種類(lèi)型,下面列出來(lái)一些,后面發(fā)現(xiàn)再補(bǔ)充。
size, threshold, modCount是int類(lèi)型
loadFactor是float類(lèi)型
補(bǔ)充:mybatis使用@Param的坑
在mybatis中@Param注解的作用是為參數(shù)指定一個(gè)名稱(chēng),在mapper文件中使用,而不是使用mybatis的arguments[0,1…]代替。但是在非動(dòng)態(tài)的mapper——mybatis根據(jù)mapper接口創(chuàng)建實(shí)現(xiàn)類(lèi),@param注解是不起作用的。
private boolean hasNamedParams(Method method) { boolean hasNamedParams = false; final Object[][] paramAnnos = method.getParameterAnnotations(); for (Object[] paramAnno : paramAnnos) { for (Object aParamAnno : paramAnno) { if (aParamAnno instanceof Param) { hasNamedParams = true; break; } } } return hasNamedParams; }
此方法位于 org.apache.ibatis.binding.MapperMethod 的內(nèi)部類(lèi) MethodSignature 中。
MethodSignature的構(gòu)造方法——>MapperMethod的構(gòu)造方法——>MapperProxy的cachedMapperMethod 和invoke方法 ——> MapperProxyFactory中的 newInstance 方法。
@SuppressWarnings("unchecked") protected T newInstance(MapperProxymapperProxy) { //jdk的動(dòng)態(tài)代理生成mapper對(duì)象 return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy); } public T newInstance(SqlSession sqlSession) { //MapperProxy實(shí)現(xiàn)了Invocation接口 final MapperProxy mapperProxy = new MapperProxy (sqlSession, mapperInterface, methodCache); return newInstance(mapperProxy); }
在整合spring與mybatis,使用spring提供的sqlSessionTemplate進(jìn)行查詢(xún)時(shí),沒(méi)有從MapperRegistry的mapper緩存集合中取mapper,而是直接使用配置的sqlSessionTemplate。
所以這種清況下,@param注解是無(wú)效的。
關(guān)于MyBatis中@param注解參數(shù)類(lèi)型錯(cuò)誤異常如何解決就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。