程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> select-mybatis 使用between and問題

select-mybatis 使用between and問題

編輯:編程解疑
mybatis 使用between and問題
  <select id="selectByTwoId" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from message
    where id
    between  #{ido,jdbcType=INTEGER} and  #{idt,jdbcType=INTEGER}
  </select>

代碼如圖。報錯說我的ido沒有 ,傳入的值也命名為ido,和idt了
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'ido' not found. Available parameters are [0, 1, param1, param2]

最佳回答:


parameterType="java.lang.Integer" 這個類型寫成map類型吧 dao層把參數放到map中

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved