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、各位大哥帮我看看,谢谢。
找不到参数。