中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MyBatis簡單使用實例

發布時間:2021-07-10 13:53:07 來源:億速云 閱讀:163 作者:chen 欄目:編程語言

這篇文章主要介紹“MyBatis簡單使用實例”,在日常操作中,相信很多人在MyBatis簡單使用實例問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”MyBatis簡單使用實例”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

MyBatis簡單使用

使用MyBatis可以分以下幾個關鍵點

  • 引入MyBatis依賴

  • 配置mybatis-config.xml配置文件

  • 創建數據庫實體類與Mapper映射文件

  • 通過SqlSessionFactoryBuilder加載配置并使用

以下按步驟寫一個單元測試:

  1. 引入依賴

<!-- mybatis依賴包 -->
<dependency>
	<groupId>org.mybatis</groupId>
	<artifactId>mybatis</artifactId>
	<version>3.5.4</version>
</dependency>

<!-- 數據庫驅動 需要使用 5.1.40以上才可解決mysql json格式亂碼問題 -->
<dependency>
	<groupId>mysql</groupId>
	<artifactId>mysql-connector-java</artifactId>
	<version>5.1.40</version>
</dependency>

<!-- lombok -->
<dependency>
	<groupId>org.projectlombok</groupId>
	<artifactId>lombok</artifactId>
	<version>1.16.6</version>
</dependency>
  1. 編寫配置文件

mybatis-config.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 resource="db.properties"></properties>
    <settings>
        <!-- 打印查詢語句 -->
        <setting name="logImpl" value="STDOUT_LOGGING" />

        <!-- 控制全局緩存(二級緩存),默認 true-->
        <setting name="cacheEnabled" value="false"/>

        <!-- 延遲加載的全局開關。當開啟時,所有關聯對象都會延遲加載。默認 false  -->
        <setting name="lazyLoadingEnabled" value="false"/>
        <!-- 當開啟時,任何方法的調用都會加載該對象的所有屬性。默認 false,可通過select標簽的 fetchType來覆蓋-->
        <setting name="aggressiveLazyLoading" value="true"/>
        <!--  Mybatis 創建具有延遲加載能力的對象所用到的代理工具,默認JAVASSIST -->
        <!--<setting name="proxyFactory" value="CGLIB" />-->
        <!-- STATEMENT級別的緩存,使一級緩存,只針對當前執行的這一statement有效,相當于關閉一級緩存 -->
        <!--
                <setting name="localCacheScope" value="STATEMENT"/>
        -->
        <setting name="localCacheScope" value="SESSION"/>
    </settings>

    <typeAliases>
        <typeAlias alias="user" type="com.freecloud.plug.mybatis.entity.User" />
        <typeAlias alias="myBatisJson" type="com.freecloud.plug.mybatis.entity.MyBatisJson" />
        <typeAlias alias="department" type="com.freecloud.plug.mybatis.entity.Department" />
        <typeAlias alias="userAndDepartment" type="com.freecloud.plug.mybatis.entity.UserAndDepartment" ></typeAlias>
    </typeAliases>

    <!-- 自定義類型轉換器 -->
    <typeHandlers>
            <typeHandler handler="com.freecloud.plug.mybatis.type.JsonTypeHandler"></typeHandler>
    </typeHandlers>

    <plugins>
        <plugin interceptor="com.freecloud.plug.mybatis.plugins.SQLExecuteTimeInterceptor">
            <property name="name" value="zhangsan" />
        </plugin>
        <plugin interceptor="com.freecloud.plug.mybatis.plugins.SimpleTableInterceptor"></plugin>
    </plugins>

    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/><!-- 單獨使用時配置成MANAGED沒有事務 -->
            <dataSource type="POOLED">
                <property name="driver" value="${jdbc.driver}"/>
                <property name="url" value="${jdbc.url}"/>
                <property name="username" value="${jdbc.username}"/>
                <property name="password" value="${jdbc.password}"/>
            </dataSource>
        </environment>
    </environments>

    <mappers>
        <mapper resource="mapper/UserMapper.xml"/>
        <mapper resource="mapper/MyBatisJsonMapper.xml"/>
        <mapper resource="mapper/DepartmentMapper.xml"/>
    </mappers>

</configuration>

db.properties數據庫連接配置

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/data_test?useUnicode=true&characterEncoding=utf-8&rewriteBatchedStatements=true
jdbc.username=root
jdbc.password=123456

初始化數據,用于后邊的單元測試。

## 部門表
CREATE TABLE `department` (
  `id` int(5) NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `parent_id` int(5) NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;


## 員工表
CREATE TABLE `user_department` (
  `id` int(5) NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  `age` int(4) DEFAULT NULL,
  `default_department_id` int(5) NOT NULL,
  `all_department_id` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

## 初始化部門
insert into department values (1,'部門1',null);
insert into department values (2,'部門2',1);
insert into department values (3,'部門3',null);


## 初始化員工

insert into user_department values (1,'張三',18,1,'2,3');
insert into user_department values (2,'李4',18,2,'1,2');
insert into user_department values (3,'王5',18,3,'3');
insert into user_department values (4,'趙6',18,1,'1');
  1. 數據庫實體類與mapper配置

/**
  * 業務實體對象
  */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class User implements Serializable {
    /** 主鍵ID */
    private Long id;
    /** 姓名 */
    private String name;
    /** 年齡 */
    private Integer age;
}

UserMapper.xml 映射文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.freecloud.plug.mybatis.dao.UserMapper">
    <!-- 聲明這個namespace使用二級緩存 -->
    <!--    <cache/>-->

    <!-- 使用Redis作為二級緩存 -->
    <!--
        <cache type="org.mybatis.caches.redis.RedisCache"
               eviction="FIFO" flushInterval="60000" size="512" readOnly="true"/>
    -->
    <cache type="org.apache.ibatis.cache.impl.PerpetualCache"
           size="1024"
           eviction="LRU"
           flushInterval="120000"
           readOnly="false"/>

    <resultMap id="BaseResultMap" type="user">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="name" property="name" jdbcType="VARCHAR"/>
        <result column="age" property="age" jdbcType="INTEGER"/>
    </resultMap>

    <!-- 對象關聯查詢,一條sql直接查詢   -->
    <resultMap id="UserAndDepartmentResultMap" type="userAndDepartment">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="name" property="name" jdbcType="VARCHAR"/>
        <result column="age" property="age" jdbcType="INTEGER"/>
        <association property="defaultDepartment" javaType="com.freecloud.plug.mybatis.entity.Department" >
            <id column="department_id" property="id"></id>
            <result column="department_name" property="name" ></result>
        </association>
    </resultMap>

    <!-- 聯合查詢,會產生 N+1的問題 -->
    <resultMap id="UserAndDepartmentResultMap1" type="userAndDepartment">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="name" property="name" jdbcType="VARCHAR"/>
        <result column="age" property="age" jdbcType="INTEGER"/>
        <!-- 此處可以夸namespace調用,但要保證當前應用加載對應mapper -->
        <association property="defaultDepartment" column="default_department_id"
                     javaType="com.freecloud.plug.mybatis.entity.Department"
                     select="com.freecloud.plug.mybatis.dao.DepartmentMapper.byId"  ></association>
    </resultMap>

    <!-- 聯合查詢,一對多 -->
    <resultMap id="UserAndDepartmentResultMap2" type="userAndDepartment">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="name" property="name" jdbcType="VARCHAR"/>
        <result column="age" property="age" jdbcType="INTEGER"/>
        <!-- 此處可以夸namespace調用,但要保證當前應用加載對應mapper -->
<!--        <association property="defaultDepartment" column="default_department_id"-->
<!--                     javaType="com.freecloud.plug.mybatis.entity.Department"-->
<!--                     select="com.freecloud.plug.mybatis.dao.DepartmentMapper.byId"  ></association>-->

        <collection property="departmentList" column="all_department_id"
                    ofType="com.freecloud.plug.mybatis.entity.Department"
                    select="com.freecloud.plug.mybatis.dao.DepartmentMapper.byIds"></collection>
    </resultMap>


    <select id="byId" resultMap="BaseResultMap" statementType="PREPARED" >
        select * from user_department where id = #{id}
    </select>


    <insert id="save" parameterType="user" >
        insert into user_department (id,name,age)
        values (#{id},#{name},#{age})
    </insert>

    <update id="update" parameterType="user">
        update user_department
        <set>
            <if test="name != null">
                name = #{name}
            </if>
            <if test="age != null">
                ,age = #{age}
            </if>
        </set>
        where id = #{id}
    </update>


    <select id="getUserAndDepartmentById" parameterType="long" resultMap="UserAndDepartmentResultMap" >
        select a.id,a.name,a.age,b.id as department_id,b.name as department_name
        from user_department a
        left join department b
        on a.default_department_id = b.id
        where a.id = #{id}
    </select>


    <select id="getUserAndDepartmentById1" parameterType="long" resultMap="UserAndDepartmentResultMap1" >
        select *
        from user_department a
        where a.id = #{id}
    </select>

    <select id="getUserAndDepartmentById2" parameterType="long" resultMap="UserAndDepartmentResultMap2" >
        select *
        from user_department a
        where a.id = #{id}
    </select>
</mapper>

mapper調用接口,方法名要到Mapper.xml文件中的配置的Id相同,否則無法映射成功。

public interface UserMapper {


    /**
     * 根據主鍵查詢
     * @param id
     * @return
     */
    public User byId(Long id);

    /**
     * 新增
     * @param user
     * @return
     */
    public void save(User user);

    /**
     * 修改
     * @param user
     */
    public void update(User user);

    /**
     * 多表關聯查詢
     * @param id
     * @return
     */
    public UserAndDepartment getUserAndDepartmentById(Long id);

    /**
     * 關聯查詢,有N + 1問題
     * @param id
     * @return
     */
    public UserAndDepartment getUserAndDepartmentById1(Long id);


    /**
     * 關聯查詢,1對多
     * @param id
     * @return
     */
    public UserAndDepartment getUserAndDepartmentById2(Long id);
}
  1. 單元測試

package com.freecloud.plug.mybatis;

import com.freecloud.common.LoggerUtil;
import com.freecloud.plug.mybatis.dao.UserMapper;
import com.freecloud.plug.mybatis.entity.User;
import com.freecloud.plug.mybatis.entity.UserAndDepartment;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Before;
import org.junit.Test;

import java.io.IOException;
import java.io.InputStream;

/**
 * @Author: maomao
 * @Date: 2021-04-08 11:36
 */
public class MyBatisTest {

    private SqlSessionFactory sqlSessionFactory;

    @Before
    public void init() throws IOException {
        String resource = "mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
    }

    /**
     * 使用mybatis api 方式硬編碼方式
     */
    @Test
    public void testApiStatement(){
        SqlSession sqlSession = sqlSessionFactory.openSession();
        try {
            sqlSession.selectOne("com.freecloud.plug.mybatis.dao.UserMapper.byId",1);
        }finally {
            sqlSession.close();
        }
    }

    /**
     * 測試使用mapper包裝直接使用接口調用
     */
    @Test
    public void testMapperInterface(){
        SqlSession sqlSession = sqlSessionFactory.openSession();
        try {
            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
            User user = userMapper.byId(1L);
            LoggerUtil.printThread(user.toString());
        }finally {
            sqlSession.close();
        }
    }

    /**
     * 多表關聯查詢
     */
    @Test
    public void testUserAndDepartment(){
        SqlSession sqlSession = sqlSessionFactory.openSession();
        try {
            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
            UserAndDepartment user = userMapper.getUserAndDepartmentById(1L);
            LoggerUtil.printThread(user.toString());
        }finally {
            sqlSession.close();
        }
    }

    /**
     * 關聯查詢,有N + 1問題
     */
    @Test
    public void testUserAndDepartment1(){
        SqlSession sqlSession = sqlSessionFactory.openSession();
        try {
            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
            UserAndDepartment user = userMapper.getUserAndDepartmentById1(1L);
            LoggerUtil.printThread(user.toString());
        }finally {
            sqlSession.close();
        }
    }

    /**
     * 關聯查詢,1對多
     */
    @Test
    public void testUserAndDepartment2(){
        SqlSession sqlSession = sqlSessionFactory.openSession();
        try {
            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
            UserAndDepartment user = userMapper.getUserAndDepartmentById2(1L);
            LoggerUtil.printThread(user.toString());
        }finally {
            sqlSession.close();
        }
    }
}

使用以上例子,就可以運行起來MyBatis。看單元測試中的使用方法,分別描述了幾種常見方式。

  • 使用傳統硬編碼直接通過Mapper映射器中配置的ID訪問

  • 使用一個空接口實現方法調用(無實現類),使用sqlSession.getMapper(UserMapper.class);方式獲取實例執行

  • 對象關聯性查詢一對多、一對一形式

核心對象

在單元測試類中我們看到了MyBatis里面的幾個核心對象:

  • SqlSessionFactoryBuiler

  • SqlSessionFactory

  • SqlSession

  • Mpper

這幾個核心對象在MyBatis的整個工作流程里面的不同環節發揮作用。如果我們不用容器,自己去管理這些對象的話,我們必須考慮一個問題:什么時候創建和銷毀這些對象?

在一些分布式應用里,多線程高并發場景中,如果要寫出高效的代碼,就必須了解這四個對象的生命周期。

SqlSessionFactoryBuiler

它是用來構建SqlSessionFactory與解析mybatis-config等配置的,而SqlSessionFactory只需要一個,所以只要構建了一個SqlSessionFactory之后它的使命就完成了,也就沒有存在的必要了。所以它的生命周期只存在于方法的局部

SqlSessionFactory

SqlSessionFactory是用來創建SqlSession的,每次訪問數據庫都需要創建一個回話。因為我們一直有創建會話的需要,所以SqlSessionFactory應該存在于應用的整個生命周期中(作用域是應用作用域)。創建SqlSession只需要一個實例來做這件事就可以了,否則會造成混亂和資源浪費。所以我們應該采用單例模式。

一般工廠類在都應該是單例模式。

SqlSession

SqlSession是一個會話,因為它不是線程安全的,不能在線程間共享。所以我們在請求開始的時候創建一個SqlSession對象,在請求結束時要及時關閉它。也可以把它理解成Jdbc 的Connection連接。

Mapper

實際是Mapper是一個代理對象,是從SqlSession中獲取的。

UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

它的作用是發送Sql來操作數據庫的數據。它應該在一個SqlSession事務方法之內。

對象作用域
SqlSessionFactoryBuilder方法局部(method)
SqlSessionFactory應用級別(application)
SqlSession請求和操作(request、method)
Mapper方法(method)

以上就是四個核心對象的生命周期。

到此,關于“MyBatis簡單使用實例”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瑞昌市| 广汉市| 榆林市| 泗阳县| 杂多县| 隆安县| 沅江市| 宁安市| 阿勒泰市| 宜州市| 宁阳县| 临西县| 赤水市| 昌图县| 揭西县| 姚安县| 铅山县| 满洲里市| 连州市| 苍梧县| 景德镇市| 沙洋县| 衡阳县| 临武县| 庐江县| 尚志市| 临泽县| 南木林县| 治县。| 浦东新区| 朝阳区| 武宁县| 贺兰县| 醴陵市| 乌鲁木齐县| 南昌县| 开江县| 华亭县| 锡林浩特市| 蒙山县| 华宁县|