91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

MyBatis-Plus中ActiveRecord(AR)如何使用

發布時間:2021-07-05 18:35:41 來源:億速云 閱讀:347 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關MyBatis-Plus中ActiveRecord(AR)如何使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。


1.什么是ActiveRecord(AR)?

ActiveRecord 是什么:

  • 每一個數據庫表應該對應創建一個實體類,類的每一個對象的實例對應于數據庫中表的一行記錄; 通常表的每個字段在類中都有相應的方法Field;

  • ActiveRecord 負責把自己持久化. 在 ActiveRecord 中封裝了對數據庫的訪問,通過對象自己實現 CRUD,實現優雅的數據庫操作。

  • ActiveRecord 也封裝了部分業務邏輯。可以作為業務對象使用。

2.通過AR實現CRUD

首先創建一張表。

MyBatis-Plus中ActiveRecord(AR)如何使用

創建一個SpringBoot工程,在pom文件中添加依賴。

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
 
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
            <version>5.1.9</version>
        </dependency>
 
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.0.5</version>
        </dependency>

在核心配置文件中,配置數據庫相關的連接信息。

#配置數據庫的相關連接信息
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/springdb?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=12345678
 
#配置對應的日志信息
mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

創建一個實體類,要使用AR,那么實體類就必須繼承MP框架中的Model這個類。

package com.szh.mybatisplus.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.extension.activerecord.Model;
 
/**
 * 使用AR,要求實體類必須繼承MP框架中的Model類
 * Model類中提供了數據庫相關的CRUD操作
 */
public class Dept extends Model<Dept> {
 
    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;
    private String name;
    private String mobile;
    private Integer manager;
 
    //getter and setter
    //toString
}

可以從Model類的源碼中看到,這其中定義了大量關于CRUD操作的方法。

MyBatis-Plus中ActiveRecord(AR)如何使用

創建一個mapper接口。這里雖然不使用 mapper,但也需要定義這個它,MP 通過 mapper 獲取到表的結構;不定義時,MP 報錯無法獲取表的結構信息。

package com.szh.mybatisplus.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.szh.mybatisplus.entity.Dept;
 
/**
 *
 */
public interface DeptMapper extends BaseMapper<Dept> {
}

在SpringBoot項目的啟動入口類上方,添加@MapperScan注解,確保可以掃描到MyBatis、MP下的相關注解。

package com.szh.mybatisplus;
 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
@SpringBootApplication
@MapperScan(value = "com.szh.mybatisplus.mapper")
public class Application {
 
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
 
}

1.1 insert

@Test
    void testDeptInsert() {
        Dept dept=new Dept();
        dept.setName("銷售部");
        dept.setMobile("12345678900");
        dept.setManager(1);
 
        //調用實體類對象自己的方法,完成對象自身到數據庫的添加操作
        boolean flag=dept.insert();
        System.out.println("insert的結果:" + flag);
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

MyBatis-Plus中ActiveRecord(AR)如何使用

1.2 update

@Test
    void testDeptUpdate() {
        Dept dept=new Dept();
        dept.setId(1);
        dept.setName("研發部");
        dept.setMobile("99999999999");
        dept.setManager(2);
 
        //調用實體類對象自己的方法,完成對象自身到數據庫的更新操作
        boolean flag=dept.updateById();
        System.out.println("update的結果:" + flag);
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

MyBatis-Plus中ActiveRecord(AR)如何使用

1.3 delete

@Test
    void testDeptDelete() {
        Dept dept=new Dept();
        boolean result = dept.deleteById(2);
        System.out.println("delete的結果:" + result);
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

@Test
    void testDeptDelete2() {
        Dept dept=new Dept();
        dept.setId(2);
        boolean result = dept.deleteById();
        System.out.println("delete的結果:" + result);
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

1.4 select

@Test
    void testSelect() {
        Dept dept=new Dept();
        dept.setId(3);
        Dept dept1 = dept.selectById();
        System.out.println("select的結果:" + dept1);
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

@Test
    void testSelect2() {
        Dept dept=new Dept();
        Dept dept1 = dept.selectById(3);
        System.out.println("select的結果:" + dept1);
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

@Test
    void testSelect3() {
        Dept dept=new Dept();
        List<Dept> deptList=dept.selectAll();
        deptList.forEach( dept1 -> {
            System.out.println(dept1);
        });
    }

MyBatis-Plus中ActiveRecord(AR)如何使用

上述就是小編為大家分享的MyBatis-Plus中ActiveRecord(AR)如何使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

新泰市| 和田市| 安义县| 武山县| 正定县| 沧州市| 建德市| 页游| 赞皇县| 西峡县| 广西| 遂川县| 天全县| 罗源县| 始兴县| 拉孜县| 交城县| 承德市| 九龙坡区| 敦煌市| 岐山县| 板桥市| 河津市| 铜山县| 浦江县| 阿尔山市| 建湖县| 枣强县| 台北县| 蒙山县| 明水县| 应用必备| 祁阳县| 齐齐哈尔市| 务川| 改则县| 宁都县| 江城| 景德镇市| 彭山县| 湖口县|