mybatis 异常 org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding

来源:互联网 发布:淘宝助理删除数据 编辑:程序博客网 时间:2024/04/25 09:24

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.csdn.net/sinat_29325027/article/details/51143448?_t_t_t=0.2515934589002933



阅读全文
0 0
原创粉丝点击