欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Parameter '***' not found. Available parameters are [0, 1, param1, param2]

程序员文章站 2022-07-14 18:29:48
...

mybatis传递多个参数只能用{0},{1}

不能写参数名

public String dosearchLog(@Param("startTime") String startTime,@Param("endTime") String endTime)
<select id="getLogListByTime"  resultType="xxxForm">
       select * from  log where createtime>= #{0} and createtime<=#{1}
   </select>