在mybatis映射接口的配置中,有select,insert,update,delete等元素都提到了parameterType的用法,parameterType为输入参数,在配置的时候,配置相应的输入参数类型即可。parameterType有基本数据类型和复杂的数据类型配置。
2.2 复杂数据类型:#{属性名} ,map中则是#{key}
3.1 传入Long型
mapper接口代码:
public User findUserById(Long id);
xml代码:
3.2 传入List
mapper接口代码:
public List findUserListByIdList(List idList);
xml代码:
在使用foreach的时候最关键的也是最容易出错的就是collection属性。
该属性是必须指定的,但是在不同情况 下,该属性的值是不一样的,主要有一下3种情况:
1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list3.3 传入数组
mapper接口代码:
public List findUserListByIdList(int[] ids);
xml代码:
3.4 传入map
public boolean exists(Map map);
xml代码:
MAP中有list或array时,foreach中的collection必须是具体list或array的变量名。
比如这里MAP含有一个名为idList的list,所以MAP中用idList取值,这点和单独传list或array时不太一样。
3.5传入JAVA对象
mapper接口代码:
public int findUserList(User user);
xml代码:
JAVA对象中有list或array时,foreach中的collection必须是具体list或array的变量名。
比如这里User含有一个名为idList的list,所以User中用idList取值,这点和单独传list或array时不太一样。
3.6注解@Param
例子1:
注解单一属性;这个类似于将参数重命名了一次
mapper接口代码:
List selectUserByTime(@Param(value="startdate")String startDate);
xml代码:
例子2:
注解javaBean
mapper接口代码:
List selectUserByTime(@Param(value="dateVO")DateVO dateVO);
xml代码:
关于取值的问题参考我得博文:Mybatis取值$与#的区别