前文我们介绍了MyBatis基本的增删该查操作,本文介绍批量的增删改查操作。前文地址:http://blog.csdn.net/mahoking/article/details/43673741
批量增加操作步骤
1. 在接口UserMapper中添加批量增加方法。
-
-
-
-
-
public void batchInsertUsers(List<User> users);
2.在User.xml中添加批量增加操作的配置。
-
-
<insert id="batchInsertUsers" parameterType="java.util.List">
-
insert into mhc_user(userName,password) values
-
<foreach collection="list" item="item" index="index" separator=",">
-
(#{item.userName},#{item.password})
-
-
由于批量增加的方法中参数为List,所以parameterType的值为java.util.List。
3. 创建批量操作的工具类BatchDataUtils,编写批量增加方法。
-
-
-
-
-
public static void batchInsertUsers(List<User> users){
-
-
SqlSessionFactory ssf = MyBatisUtil.getSqlSessionFactory();
-
SqlSession session = ssf.openSession();
-
-
-
UserMapper userMapper = session.getMapper(UserMapper.class);
-
userMapper.batchInsertUsers(users);
-
-
-
-
-
MyBatisUtil.closeSession(session);
-
-
批量删除操作步骤
1. 在接口UserMapper中添加删除增加方法。
-
-
-
-
-
public void batchDeleteUsers(List ids);
2.在User.xml中添加批量增加操作的配置。
-
-
<delete id="batchDeleteUsers" parameterType="java.util.List">
-
delete from mhc_user where id in
-
<foreach collection="list" index="index" item="item" open="(" close=")" separator=",">
-
-
-
由于批量删除的方法中参数为List,所以parameterType的值为java.util.List。
3. 在批量操作的工具类BatchDataUtils中编写批量删除方法。
-
-
-
-
-
public static void batchDeleteUsers(List ids){
-
SqlSessionFactory ssf = MyBatisUtil.getSqlSessionFactory();
-
SqlSession session = ssf.openSession();
-
-
-
UserMapper userMapper = session.getMapper(UserMapper.class);
-
userMapper.batchDeleteUsers(ids);
-
-
-
-
-
MyBatisUtil.closeSession(session);
-
-
批量查询操作步骤
1. 在接口UserMapper中添加批量查询方法。
-
-
-
-
-
-
public List<User> batchSelectUsers(List ids);
2.在User.xml中添加批量查询操作的配置。
-
-
<select id="batchSelectUsers" resultType="User">
-
-
from mhc_user where id in
-
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
-
-
-
由于批量查询的方法的返回为List<User>,所以resultType的值为User,即com.mahaochen.mybatis.domain.User。详见configuration.xml中。
-
-
-
<typeAlias type="com.mahaochen.mybatis.domain.User" alias="User"/>
-
3. 创建批量操作的工具类BatchDataUtils,编写批量查询方法。
-
-
-
-
-
-
public static List<User> batchSelectUsers(List ids){
-
SqlSessionFactory ssf = MyBatisUtil.getSqlSessionFactory();
-
SqlSession session = ssf.openSession();
-
-
-
UserMapper userMapper = session.getMapper(UserMapper.class);
-
users = userMapper.batchSelectUsers(ids);
-
-
-
-
MyBatisUtil.closeSession(session);
-
-
-
-
批量更细操作步骤
1. 在接口UserMapper中添加批量增加方法。
-
-
-
-
-
public void batchUpdateUsers(List users);
2.在User.xml中添加批量更新操作的配置。
-
-
-
-
<update id="batchUpdateUsers" parameterType="java.util.List">
-
<foreach collection="list" item="item" index="index" open="" close="" separator=";">
-
-
-
userName = #{item.userName}, password = #{item.password}
-
-
-
-
-
-
-
-
<update id="batchUpdateUsers01" parameterType="java.util.List">
-
<foreach collection="list" item="item" index="index" open="begin" close=";end;" separator=";" >
-
-
-
userName = #{item.userName}, password = #{item.password}
-
-
-
-
-
-
<update id="batchUpdateUsers02" parameterType="java.util.List">
-
<foreach collection="list" item="item" index="index" open="begin" close="end;" separator="" >
-
-
-
userName = #{item.userName}, password = #{item.password}
-
-
-
-
-
-
<update id="batchUpdateUsers03" parameterType="java.util.List">
-
-
<foreach collection="list" item="item" index="index" separator="" >
-
-
-
userName = #{item.userName}, password = #{item.password}
-
-
-
-
-
由于批量更新的方法中参数为List,所以parameterType的值为java.util.List。
3. 创建批量操作的工具类BatchDataUtils,编写批量更新方法。
-
-
-
-
-
public static void batchUpdateUsers(List users){
-
SqlSessionFactory ssf = MyBatisUtil.getSqlSessionFactory();
-
SqlSession session = ssf.openSession();
-
-
-
UserMapper userMapper = session.getMapper(UserMapper.class);
-
userMapper.batchUpdateUsers(users);
-
-
-
-
-
MyBatisUtil.closeSession(session);
-
-