• Mybatis传递多个参数


      当Mybatis入参只有一个,且为基本类型时,需要parameterType,mapper中变量名可以随便写,#{id},#{value},使用#{value}会多些。

      当入参大于1个时,且为基本类型时,不需要parameterType,mapper直接按照#{name},#{age}的方式会报错。

      方法1:顺序传参法

    public User selectUser(String name, int deptId);
    
    <select id="selectUser" resultMap="UserResultMap">
        select * from user
        where user_name = #{0} and dept_id = #{1}
    </select>

      或者#{0},#{1}换成param1,param2。select * from user where user_name = #{param1} and dept_id =#{param2}

      方法2:@Param注解传参法

    public User selectUser(@Param("userName") String name, int @Param("deptId") deptId);
    
    <select id="selectUser" resultMap="UserResultMap">
        select * from user
        where user_name = #{userName} and dept_id = #{deptId}
    </select>

      方法3:Map传参法

    public User selectUser(Map<String, Object> params);
    
    <select id="selectUser" parameterType="java.util.Map" resultMap="UserResultMap">
        select * from user
        where user_name = #{userName} and dept_id = #{deptId}
    </select>

      方法4:Java Bean传参法

    public User selectUser(User user);
    
    <select id="selectUser" parameterType="com.test.User" resultMap="UserResultMap">
        select * from user
        where user_name = #{userName} and dept_id = #{deptId}
    </select>

      使用Java Bean的方式会更好理解些,使用@Param和JDBI的方式更像些。

      当参数为单个时,不管是基本类型,包装类型,String都没什么特殊的。当返回值为List<User>时,resultMap的值是UserResultMap。

  • 相关阅读:
    MarkDown的快速入门
    openCV打开摄像头,用openGL实现纹理贴图和视频预览
    tensorflow中的dropout是怎么实现的?
    BEEPS-仿美图秀秀磨皮算法,让美女的皮肤更光滑
    鄙人提出的PBDRLSE分割算法(绝对原创)
    怀旧风格照片特效
    铅笔特效算法
    背光图像的增强
    关于push和concat的性能问题
    小程序日历签到
  • 原文地址:https://www.cnblogs.com/lnlvinso/p/14534727.html
Copyright © 2020-2023  润新知