日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

mybatis there is no getter named forInteger

發布時間:2024/1/23 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 mybatis there is no getter named forInteger 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

JAVA就業套餐課:https://edu.csdn.net/combo/detail/1230

一:發現問題

sql動態語句中如果 parameterType="int"

??? <select id="sel_campusinfo" parameterType="int" resultType="Campusinfo">
??? ??? ??? ?select cmpid,cmpname from campusinfo where state!='d' and cmpid=#{cmpid}
???? </select>

是正確的,但是如果加上if test

??? <select id="sel_campusinfo" parameterType="int" resultType="Campusinfo">
??? ??? ??? ?select cmpid,cmpname from campusinfo where state!='d' and cmpid!=0
??? ??? ??? ?<if test="cmpid!=0">and cmpid=#{cmpid}</if>
???? </select>


則報錯:

There is no getter for property named 'cmpid' in 'class java.lang.Integer'


出錯原因:Mybatis默認采用ONGL解析參數,所以會自動采用對象樹的形式取Integer.cmpid。Integer對象沒有cmpid屬性。如果不解析參數,mybatis自動識別傳入的參數,不會報錯。


二:解決辦法
1.修改select語句

??? <select id="sel_campusinfo" parameterType="int" resultType="Campusinfo">
??? ??? ??? ?select cmpid,cmpname from campusinfo where state!='d' and cmpid!=0
??? ??? ??? ?<if test="_parameter!=0">and cmpid=#{_parameter}</if>
??? ??? ?</select>


參數名全部改為_parameter。

2.不修改sql,只修改接口

接口類:

Campusinfo sel_campusinfo( int cmpid);

改為:

Campusinfo sel_campusinfo(@Param(value="cmpid") int cmpid);

3.可以將參數包裝在hashmap或者對象中作為參數
---------------------
作者:cclovett
來源:CSDN
原文:https://blog.csdn.net/cclovett/article/details/12855505
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!

總結

以上是生活随笔為你收集整理的mybatis there is no getter named forInteger的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。