org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'user_type' not found. Available parameters are [2, 1, 0, param1, param2, param3]
对于mybatis的接口类中的方法
当方法参数数量大于1时,需要在方法参数中使用@Param把函数参数与Mapper.xml文件中的参数关联起来例如
dao层
User getUser(@Param("name")String xingming,@Param("classId") String banji)
对应的xml文件
<select id="getUser" resultMap="User" >
select id ,name ,sex ,age,classId
where classId=#{classId} and name=#{name}
</select>
参考:http://blog.youkuaiyun.com/sinat_29325027/article/details/51143448?_t_t_t=0.2515934589002933
本文介绍了在使用MyBatis框架进行数据库操作时如何正确处理带有多个参数的方法。特别是当方法参数超过一个时,需要使用@Param注解来明确指定参数名称,确保XML映射文件中的参数引用正确。
973

被折叠的 条评论
为什么被折叠?



