🌷🍁 博主猫头虎 带您 Go to New World.✨🍁 🦄 博客首页——猫头虎的博客🎐 🐳《面试题大全专栏》 文章图文并茂🦕生动形象🦖简单易学!欢迎大家来踩踩~🌺 🌊 《IDEA开发秘籍专栏》学会IDEA常用操作,工作效率翻倍~💐 🌊 《100天精通Golang(基础入门篇)》学会Golang语言,畅玩云原生,走遍大小厂~💐
🪁🍁 希望本文能够给您带来一定的帮助🌸文章粗浅,敬请批评指正!🍁🐥
本文总结了MyBatis中传参的多种方式,包括基本类型参数、对象参数、Map参数、注解参数等。通过了解这些传参方式,读者可以更好地在MyBatis中进行参数的传递与处理。
MyBatis是一款流行的Java持久化框架,用于数据库操作。在使用MyBatis进行数据库查询或更新操作时,需要向SQL语句传递参数。MyBatis提供了多种传参方式,以满足不同场景下的需求。本文将介绍这些传参方式及其使用方法。
MyBatis中传参的方式有多种,包括:
#{参数名}
来引用基本类型参数。#{属性名}
引用对象的属性。#{key}
引用Map中的值。@Param
注解为参数命名,使用#{value}
引用参数值。#{参数名}
引用基本类型参数。#{属性名}
引用对象的属性。#{key}
引用Map中的值。@Param
注解,并使用#{value}
引用参数值。<if>
、<choose>
等标签构建动态SQL语句。#{参数名}
引用枚举值。对于使用
需要手动拼接‘ ’ ,这就存在注入的风险)
#{}
service层:
@Override
public User getUserInfo(Integer userId) {
User user = userMapper.getUserInfo(userId);
//省略 业务代码...
return user;
}
mapper层:
User getUserInfo(Integer userId);
mapper.xml:
<!--查询-->
<select id="getUserInfo" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{userId};
</select>
按照顺序传参 注意mapper层和xml层! service层:
@Override
public User getUserInfo(Integer userId,String sex) {
User user = userMapper.getUserInfo(userId,sex);
//省略 业务代码...
return user;
}
mapper层:
User getUserInfo(Integer userId,String sex);
mapper.xml:
<!--查询-->
<select id="getUserInfo" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{0} and sex=#{1};
</select>
service层:
@Override
public User getUserInfo(Integer userId,String sex) {
User user = userMapper.getUserInfo(userId,sex);
//省略 业务代码...
return user;
}
User getUserInfo(@Param("userId")Integer userId,@Param("sex")String sex);
mapper.xml:
<!--查询-->
<select id="getUserInfo" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{userId} and sex=#{sex};
</select>
service层:
@Override
public User getUserInfo(User user) {
User userInfo = userMapper.getUserInfo(user);
//省略 业务代码...
return userInfo;
}
mapper层:
User getUserInfo(User user);
mapper.xml:
<!--查询-->
<select id="getUserInfo" parameterType="User" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{userId} and sex=#{sex};
</select>
service层:
@Override
public User getUserInfo(Map map) {
User user = userMapper.getUserInfo(map);
//省略 业务代码...
return user;
}
mapper层:
User getUserInfo(Map map);
mapper.xml层:
<!--查询-->
<select id="getUserInfo" parameterType="Map" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{userId} and sex=#{sex};
</select>
这种情况其实使用场景比较少,因为上面的各种姿势其实已经够用了 service层:
@Override
public User getUserInfo1(Integer userId,String sex) {
User userInfo = new User(userId,sex);
Map<String,Object> map=new HashMap<String,Object>();
map.put("user",userInfo);
User userResult= userMapper.getUserInfo(map);
//省略 业务代码...
return userResult;
}
mapper层:
User getUserInfo(Map map);
mapper.xml:
<!--查询-->
<select id="getUserInfo" parameterType="Map" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{userInfo.userId} and sex=#{userInfo.sex};
</select>
service层:
@Override
public User getUserInfo(User user,Integer age) {
User userResult = userMapper.getUserInfo(user,age);
//省略 业务代码...
return userResult;
}
mapper层:
User getUserInfo(@Param("userInfo") User user,@Param("age") Integer age);
mapper.xml:
<!--查询-->
<select id="getUserInfo" resultType="com.demo.elegant.pojo.User">
select userId
from users
where userId=#{userInfo.userId} and sex=#{userInfo.sex} and age=#{age};
</select>
service层:
List<Integer>list= new ArrayList>();
list. add(44);
list. add(45);
list. add(46);
List<SysUser> sysUser= sysUserMapper. selectList(list);
mapper层:
List<SysUser> selectList(List<Integer> ids);
mapper.xml:
<select id="selectList"resultMap"BaseResultMap">
select
<include refid="Base_Column_List"/>
from sys_user
where id in
<foreach item="item" index="index" collection="list"open="("separator","close=")"> #{item}
</foreach>
</select>
service层:
List<SysUser> sysuser= sysUserMapper. selectlist(new Integer[]{44,45,46});
mapper层:
List<SysUser> selectList(Integer[]ids);
mapper.xml:
<select id="selectList"resultMap"BaseResultMap">
select
<include refid="Base Column_List"/>
from sys user
where id in
<foreach item="item" index="index collection="array"open="("separator="," close=")"> #{item}
</foreach>
</select>
${}
使用这个的时候,只需要注意,如果是传递字段名或者表名,是直接做参数传入即可, 但是如果作为sql’语句里面使用的值, 记得需要手动拼接 ’ ’ 号。
例如, 传入单个参数 sex: service层: @Override
public User getUserInfo(String sex) {
sex="'"+sex+"'";
User user = userMapper.getUserInfo(sex);
//省略 业务代码...
return user;
}
mapper层:
User getUserInfo(String sex);
mapper.xml:
<!--查询-->
<select id="getUserInfo" resultType="com.demo.elegant.pojo.User">
select userId
from users
where sex=${sex};
</select>
多个参数,那也就是使用注解@Param取名字解决即可。
@Param
注解时,保证参数名与注解值一致。MyBatis支持多种传参方式,开发者可以根据不同的情况选择合适的方式。了解这些传参方式,能够更加灵活地操作SQL语句,提高代码的可读性和维护性。