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

bindingexception-mybatis報錯Parameterparams not fund.

編輯:編程解疑
mybatis報錯Parameter'params' not fund.

1、mybatis報錯Parameter'params' not fund.Available parameters ar[param1,page]。

2、接口是這樣寫的

public int queryCount(@Param("page") CompanyForm page) throws DaoException;

3、實現類是這樣引用的

@Override
public int queryCount(CompanyForm page) throws ServiceException {
try {
return companyExtMapper.queryCount(page);
} catch (Exception e) {
throw new ServiceException(e.getMessage(), e);
}
}

3、mapper的xml是這樣寫的

 <select id="queryCount" resultType="java.lang.Integer" parameterType="classroom.common.form.CompanyForm">
select count(1)  from company     
<include refid="condition" />


4、各位大哥幫我看看,謝謝。

最佳回答:


就是沒找到parameter的那個page屬性嘛

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