深入浅出Mybatis系列---Mybatis入门

Posted deityjian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了深入浅出Mybatis系列---Mybatis入门相关的知识,希望对你有一定的参考价值。

一、Mybatis环境搭建及简单实例

1. 新建web项目, 添加依赖包:mybatis包、数据库驱动包(我使用的是mysql)、日志包(我使用的是log4j), 由于我的是maven项目, 那么添加依赖包就简单了,直接在pom.xml添加依赖即可。

pom.xml:

技术图片
<dependencies>
      <!-- 添加junit -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    
    <!-- 添加log4j -->
    <dependency>
        <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
        <version>1.2.16</version>
    </dependency>
    
    <!-- 添加mybatis -->
    <dependency>
        <groupId>org.mybatis</groupId>
      <artifactId>mybatis</artifactId>
        <version>3.2.6</version>
    </dependency>
    
    <!-- 添加mysql驱动 -->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.12</version>
    </dependency>
    
  </dependencies>
View Code

2. 配置log4j, 配置mybatis

  在classpath建立一个用于配置log4j的配置文件log4j.properties, 再建立一个用于配置Mybatis的配置文件configuration.xml(文件可随便命名)。log4j的配置,我就不多说,这儿主要说一下configuration.xml:

技术图片
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

  <!-- 指定properties配置文件, 我这里面配置的是数据库相关 -->
  <properties resource="dbConfig.properties"></properties>
  
  <!-- 指定Mybatis使用log4j -->
  <settings>
     <setting name="logImpl" value="LOG4J"/>
  </settings>
      
  <environments default="development">
    <environment id="development">
      <transactionManager type="JDBC"/>
      <dataSource type="POOLED">
          <!--
          如果上面没有指定数据库配置的properties文件,那么此处可以这样直接配置 
        <property name="driver" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/test1"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
         -->
         
         <!-- 上面指定了数据库配置文件, 配置文件里面也是对应的这四个属性 -->
         <property name="driver" value="$driver"/>
         <property name="url" value="$url"/>
         <property name="username" value="$username"/>
         <property name="password" value="$password"/>
         
      </dataSource>
    </environment>
  </environments>
  
  <!-- 映射文件,mybatis精髓, 后面才会细讲 -->
  <mappers>
    <mapper resource="com/dy/dao/userDao-mapping.xml"/>
  </mappers>
  
</configuration>
View Code

3. 开始写Demo

  首先,在mysql数据库test1建立一张表user:

技术图片

先编写一个实体类User: User类用于与User表相对应。

User:

技术图片
package com.dy.entity;

public class User 

    private int id;
    private String name;
    private String password;
    private int age;
    private int deleteFlag;
    
    public int getId() 
        return id;
    
    public void setId(int id) 
        this.id = id;
    
    public String getName() 
        return name;
    
    public void setName(String name) 
        this.name = name;
    
    public String getPassword() 
        return password;
    
    public void setPassword(String password) 
        this.password = password;
    
    public int getAge() 
        return age;
    
    public void setAge(int age) 
        this.age = age;
    
    public int getDeleteFlag() 
        return deleteFlag;
    
    public void setDeleteFlag(int deleteFlag) 
        this.deleteFlag = deleteFlag;
    
    
View Code

再编写一个UserDao 接口:

UserDao:

技术图片
package com.dy.dao;

import java.util.List;

import com.dy.entity.User;

public interface UserDao 

    public void insert(User user);
    
    public User findUserById (int userId);
    
    public List<User> findAllUsers();
    
View Code

再编写一个userDao-mapping.xml (可随便命名):

userDao-mapping.xml:

技术图片
<?xml version="1.0" encoding="UTF-8" ?>   
<!DOCTYPE mapper   
PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"  
"http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd"> 
<mapper namespace="com.dy.dao.UserDao">

   <select id="findUserById" resultType="com.dy.entity.User" > 
      select * from user where id = #id
   </select>

</mapper>
View Code

userDao-mapping.xml相当于是UserDao的实现, 同时也将User实体类与数据表User成功关联起来。

4. 下面编写junit测试代码UserDaoTest:

 UserDaoTest:

技术图片
public class UserDaoTest 

    @Test
    public void findUserById() 
        SqlSession sqlSession = getSessionFactory().openSession();  
        UserDao userMapper = sqlSession.getMapper(UserDao.class);  
        User user = userMapper.findUserById(2);  
        Assert.assertNotNull("没找到数据", user);
    
    
    //Mybatis 通过SqlSessionFactory获取SqlSession, 然后才能通过SqlSession与数据库进行交互
    private static SqlSessionFactory getSessionFactory()   
        SqlSessionFactory sessionFactory = null;  
        String resource = "configuration.xml";  
        try   
            sessionFactory = new SqlSessionFactoryBuilder().build(Resources  
                    .getResourceAsReader(resource));
         catch (IOException e)   
            e.printStackTrace();  
          
        return sessionFactory;  
      
    
View Code

好啦,这样一个简单的mybatis 的demo就能成功运行啦。通过这个demo, 应该你就也能初步看出mybatis的运行机制,如果不清楚,也没关系。从下一篇文章开始,才开始正式讲解mybatis。

补充:如何得到插入数据之后的主键值?

第一种:数据库设置主键自增机制

    userDao-mapping.xml 文件中定义:

<!-- 向 user 表插入一条数据 -->
    <insert id="insertUser" parameterType="com.ys.po.User">
        <!-- 将插入的数据主键返回到 user 对象中
             keyProperty:将查询到的主键设置到parameterType 指定到对象的那个属性
             select LAST_INSERT_ID():查询上一次执行insert 操作返回的主键id值,只适用于自增主键
             resultType:指定 select LAST_INSERT_ID() 的结果类型
             order:AFTER,相对于 select LAST_INSERT_ID()操作的顺序
         -->
        <selectKey keyProperty="id" resultType="int" order="AFTER">
            select LAST_INSERT_ID()
        </selectKey>
        insert into user(name,password,age,deleteFlag)
            values(#name,#password,#age,#deleteFlag)
    </insert>

第二种:非自增主键机制

<!-- 向 user 表插入一条数据 -->
    <insert id="insertUser" parameterType="com.ys.po.User">
        <!-- 将插入的数据主键返回到 user 对象中
        流程是:首先通过 select UUID()得到主键值,然后设置到 user 对象的id中,在进行 insert 操作
             keyProperty:将查询到的主键设置到parameterType 指定到对象的那个属性
             select UUID():得到主键的id值,注意这里是字符串
             resultType:指定 select UUID() 的结果类型
             order:BEFORE,相对于 select UUID()操作的顺序
         -->
        <selectKey keyProperty="id" resultType="String" order="BEFORE">
            select UUID()
        </selectKey>
        insert into user(name,password,age,deleteFlag)
            values(#name,#password,#age,#deleteFlag)
</insert>

 

deleteFlag

以上是关于深入浅出Mybatis系列---Mybatis入门的主要内容,如果未能解决你的问题,请参考以下文章

MyBatsi学习

Mybatis学习

深入浅出Mybatis系列---配置详解之typeAliases别名(mybatis源码篇)

深入浅出Mybatis之快速入门!

深入浅出Mybatis之快速入门!

《深入浅出MyBatis技术原理与实战》读书笔记 - MyBatis入门与配置