Mybatis第三天

Mybatis第三天

一、内容介绍

  1. mybatis自带数据源
  2. 事务问题
  3. 动态的sql语句:if标签和循环标签
  4. 多表之间的关系配置
    一对一
    一对多
    多对多

二、mybatis自带数据源

	
    
        
        
            
            
            
            
                
                
                
                
            
        
    

三、事务问题

1、JDBC版本

事务1 :设置事务手动提交(不能自动提交)
事务2:提交事务
事务3:出现异常,回滚
事务4: 还原状态,设置事务为自动提交

package com.itheima;

import com.itheima.domain.User;
import org.junit.Test;

import java.sql.*;
import java.util.ArrayList;
import java.util.List;

/**
 * 回顾jdbc代码
 */
public class TestJDBC {

    @Test
    public void test(){

        List userList = new ArrayList<>();

        //1. 注册驱动
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
        String url = "jdbc:mysql://localhost:3306/mybatisdb_331";
        String username = "root";
        String password = "root";
        Connection conn = null;
        PreparedStatement pst = null;
        ResultSet rs = null;
        try {
            //2. 获取连接
            conn = DriverManager.getConnection(url, username ,password);
            //事务1 :设置事务手动提交(不能自动提交)
            conn.setAutoCommit(false);
            // 3. SQL语句
            String sql1 = "insert into ......";
            String sql2 = "insert into ......";
            //4. 创建statement对象: Statement , PreparedStatement
            pst = conn.prepareStatement(sql1);
            //5. 执行SQL语句,返回结果集
            pst.executeUpdate();

            pst = conn.prepareStatement(sql2);
            pst.executeUpdate();
            //事务2:提交事务
            conn.commit();
        } catch (SQLException e) {
            //事务3:出现异常,回滚
            try {
                conn.rollback();
            } catch (SQLException e1) {
                e1.printStackTrace();
            }
            e.printStackTrace();
        } finally {
            //事务4: 还原状态,设置事务为自动提交
            if(conn != null){
                try {
                    conn.setAutoCommit(true);
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }

            //7. 释放资源: 先开后关
            if(rs != null){
                try {
                    rs.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if(pst != null){
                try {
                    pst.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if(conn != null){
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }

        }

        //打印结果
        for (User user : userList) {
            System.out.println(user);
        }

    }
}
2、Mybatis版本

Mybatis第三天_第1张图片

一种三合一写法
//获取SqlSession对象
SqlSession sqlSession = new SqlSessionFactoryBuilder().build(this.getClass().getClassLoader().getResourceAsStream("mybatis-config.xml")).openSession();
//获取动态代理对象
UserDao userDao = sqlSession.getMapper(UserDao.class);

四、动态sql语句

1、问题
	
    
2、if语句 注意那个 1=1

    
3、where语句 多条件都写and
 
    
4、SQL片段

把重复的sql语句提取出来,需要使用时引用即可


    select * from user

--       关联使用sql片段
--         include :包含
--         refid: 关联的sql片段的id
--         ref :references
        
5、foreach语句(好好看这个循环删除的代码)

        delete from user where
        
        
            #{id}
        
    

    
        delete from user where
        
        
            #{id}              (注意!这个item只是代指每个元素,名字随便)
        
    

五、多表关联

Mybatis第三天_第2张图片

1、一对一

< !–映射user中的属性–>
< !–association 映射单个对象
property:属性名
javaType:属性对应的类型
–>

a、第一种方法:accountUser extends Account
1)配置文件配置(mapper)

        
    

    
 2) pojo配置
 	/**
 * 继承了Account,就拥有Account中所有的属性
 * 单独添加User的属性
 */
public class AccountUser extends  Account {
    private Integer uid;
    private String username;
    private String password;
    private String address;
    private Date birthday;
    private String sex;
}
3) Dao接口
	/**
     * 查询所有的账户:包含对应的用户信息
     * @return
     */
    public List findAllAccountUser();
    
b、第二种方法
1)配置文件
	
          (注意:相同的可以省略)
        
        
        
        
        
        
        
        
        
        
    
  2)pojo 
  public class Account {
    private Integer id;
    private String name;
    private Float money;
    private Integer u_id;
//    一个账户对应一个用户
    private User user;
  }
  3)  Dao接口
  /**
     * 查询所有的账户:包含对应的用户信息
     * @return
     */
    public List findAllAccount();
c、第三种方法 (好处在于结构清楚,但相同的不能省略  写的最多)
1)配置文件
	
        
        
        
        
        
        
        
            
            
            
            
            
            
        
    
  2)pojo 
  public class Account {
    private Integer id;
    private String name;
    private Float money;
    private Integer u_id;
//    一个账户对应一个用户
    private User user;
  }
  3)  Dao接口
  /**
     * 查询所有的账户:包含对应的用户信息
     * @return
     */
    public List findAllAccount();
2、一对多

< !–Collection : 映射accountList 属性
property: 对应的属性名
ofType: 集合中的元素类型: association 中javaType效果一致
–>

a.  pojo
	public class User {
    private Integer id;
    private String username;
    private String password;
    private String address;
    private Date birthday;
    private String sex;
    //一个用户对应多个账户
    private List accountList;
  }
b. 配置文件
	    
        
        
        
        
        
        
        
        
            
            
            
            
        
    

    
 c、Dao接口
 /**
     * 返回所有的user对象,包含用户对应账户信息
     * @return
     */
    public List findAll();
3、多对多

多对多就是配置两个一对多

注意查找的sql语句
中间表
Mybatis第三天_第3张图片

a. sql语句
create table role(
	id int primary key auto_increment,
	roleName varchar(20),
	roleDesc varchar(20)
)

create table user_role(
	uid int , 
	rid int , 
	-- 联合主键: 两列以上为主键列, 两列不能同时相同
	primary key(uid,rid),
	foreign key(uid) references user(uid),
	foreign key(rid) references role(id)
)
b. pojo
  public class User {
    private Integer id;
    private String username;
    private String password;
    private String address;
    private Date birthday;
    private String sex;
//    一个用户有多个角色
    private List roleList;
  }
c、配置文件

    
        
        
        
        
        
        
        
        
            
            
            
        
    

    

d、dao接口
    /**
     * 返回所有的user对象,包含用户对应的角色对象
     * @return
     */
    public List findAll();

角色到用户的关系

a、pojo
	public class Role {
    private Integer id;
    private String roleName;
    private String roleDesc;
//    一个角色对应多个用户'
    private List userList;
  }
b、配置文件

    
        
        
        
        
            
            
            
            
            
            
        
    

    

c、dao接口
		/**
     * 查询所有的角色,包含用户对象
     * @return
     */
    public List findAll();

你可能感兴趣的:(Mybatis)