MyBatis_传入参数的问题

一、单个参数

1、基本数据类型

(1)直接使用

#{}中的参数名与方法中的参数名一致

List<ChargeRuleDO> tests(long id);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{id}
</select>

(2)使用注解

#{}中的参数名与方法中的@Param()里的参数名一致

List<ChargeRuleDO> tests(@Param("aid") long bid);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{aid}
</select>

2、复杂数据类型(这里主要是指Java实体类)

(1)直接使用

#{}中的参数名与方法中的参数的属性名一致

List<ChargeRuleDO> tests(TestQO testQO);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{id} and t.rule_type=#{ruleType}
</select>

(2)使用注解

#{}中的参数名与方法中的@Param()里的参数对应的属性名一致,而且必须写成"#{atestQO.id}“的格式,不能简写成”#{id}".

List<ChargeRuleDO> tests(@Param("atestQO") TestQO btestQO);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{atestQO.id} and t.rule_type=#{atestQO.ruleType}
</select>

二、多个参数

1、基本数据类型

(1)直接使用

这里改用#{index},其中,#{0}代表接收的是dao层中的第一个参数,#{1}代表dao层中第二参数,更多参数一致往后加即可。

List<ChargeRuleDO> tests(long id, String ruleType);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{0} and t.rule_type=#{1}
</select>

(2)使用注解

#{}中的参数名与方法中的@Param()里的参数名一致

List<ChargeRuleDO> tests(@Param("id") long id, @Param("ruleType") String ruleType);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{id} and t.rule_type=#{ruleType}
</select>

2、复杂数据类型

(1)直接使用
尝试了两种取参数的方法都不行

(2)使用注解

#{}中的参数名与方法中的@Param()里的参数对应的属性名一致,而且必须写成"#{testQO.id}“的格式,不能简写成”#{id}".

List<ChargeRuleDO> tests(@Param("testQO")TestQO testQO, @Param("testQO2")TestQO2 testQO2);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{testQO.id} and t.rule_type=#{testQO.ruleType} and t.user_id=#{testQO2.uesrId}
</select>

3、基本数据类型与复杂数据类型混合使用

因为在多参数的情况下,复杂数据类型不能直接使用,所以这里主要尝试基本数据类型直接使用并且复杂数据类型使用注解这一种情况

List<ChargeRuleDO> tests(long id, String ruleType, @Param("testQO2")TestQO2 testQO2);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id = #{0} and t.rule_type=#{1} and t.user_id=#{testQO2.uesrId}
</select>

三、List参数

List<ChargeRuleDO> tests(List<long> list);

<select id="tests" resultType="com.xxx.bean.ChargeRuleDO">
	select * from t_charge_rule t where t.id in
		<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
			#{item}
    </foreach>
</select>

四、Mybatis判断传入的参数是否存在的方法

使用 < if test=“_parameter.containsKey(‘参数’)” > 去判断参数是否存在。

例如:

<select id="selectBy***" parameterType="java.util.HashMap" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from sys_user
    where 1=1
    <if test="_parameter.containsKey('sysUserName')">
      and sys_user_name=#{sysUserName}
    if>
    <if test="_parameter.containsKey('cBeginTime')">
      = #{cBeginTime}
      ]]>
    if>
    <if test="_parameter.containsKey('cEndTime')">
      
    if>
    <if test="_parameter.containsKey('uEndTime')">
      
    if>
select>

你可能感兴趣的:(Mybatis,mybatis)