首頁 > 軟體

零基礎搭建boot+MybatisPlus的詳細教學

2022-03-20 10:00:11

1.準備工作

1.1 建立資料庫表

建立表

CREATE  TABLE `login`(
   `id`  INT(4)  primary key auto_increment,
   `login_id`  VARCHAR(50)  UNIQUE,
   `city` VARCHAR(50)  DEFAULT  '富平',
   `password`  VARCHAR(50)
)

在視覺化工具中新增資料(我不太會寫sql)

1.2 建立boot專案

1.3 建立實體類(對映資料庫表)

2.使用mybatisPlus(運算元據庫)

2.1 新增mybatisPlus依賴

<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.1.2</version>
</dependency>
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
</dependency>

2.2 設定資料庫資訊

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/test0314?characterEncoding=utf-8&serverTimezone=UTC
    username: root
    password: root
    driver-class-name: com.mysql.cj.jdbc.Driver

2.3 建立mapper介面

該介面中提供了常用的crud方法,我們只需要從容器中獲取mapper運算元據即可

package com.hand.demo.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hand.demo.entity.User;

/**
 * 使用者資料存取層介面
 * */
public interface UserMapper extends BaseMapper<User> {
}

2.4 設定mapper掃描

  • 在啟動類中設定我們的mapper在哪個包
  • 兩種方法:@Mapper註解(麻煩);@MapperScan(在主啟動類上進行設定)
@SpringBootApplication
@MapperScan("com.hand.demo.mapper")
public class Demo0318Application {
    public static void main(String[] args) {
        SpringApplication.run(Demo0318Application.class, args);
    }
}

2.5 test

 <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

在test包下

package com.hand.demo;
import com.hand.demo.entity.User;
import com.hand.demo.mapper.UserMapper;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.List;
@SpringBootTest
class Demo0318ApplicationTests {
    @Autowired
    private UserMapper userMapper;
    /**
     * 獲取UserMapper實現類物件(mybatisPlus容器會使用動態代理生成該介面的實現類物件,並注入到spring容器中
     * 所以我們只需要在這定義一個成員變數,通過註解自動注入即可)
     * */
    @Test
    public void testQueryAll() {
        List<User> userList = userMapper.selectList(null);
        System.out.println(userList);
    }
}

3. 常用設定

3.1 設定表對映規則

設定表字首設定

3.2 主鍵生成策略(預設基於雪花演演算法)

 @TableId(type = IdType.AUTO)
    private Long id;

3.3 全域性設定

mybatis-plus:
  global-config:
    db-config:
      table-prefix:
      id-type: auto

3.4 欄位與列名的駝峰對映(預設開啟)

mybatis-plus:
  global-config:
    db-config:
      table-prefix:
      id-type: auto
  configuration:
    map-underscore-to-camel-case: false  

3.5 紀錄檔設定

mybatis-plus:
  global-config:
    db-config:
      table-prefix:
      id-type: auto
  configuration:
    map-underscore-to-camel-case: false
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

4.基操

4.1 插入 insert()

4.2 刪除 deleteXxx() map

4.3 更新 updateXxx()

5.Wrapper(條件構造器)

5.1

 Wrapper
           AbstractWrapper    
    QueryWrapper   UpdateWrapper 

QueryWrapper的select可以設定需要查詢的列

6. service層使用

  • 不需要手動注入該泛型內的mapper
  • 如果需要別的mapper手動注入就行
package com.hand.demo.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.hand.demo.entity.User;

public interface UserService extends IService<User> {
    
}
package com.hand.demo.service.Impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.hand.demo.entity.User;
import com.hand.demo.mapper.UserMapper;
import com.hand.demo.service.UserService;

@Service
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
    
}
    @Autowired
    private UserService userService;

    @Test
    public void testService() {
        List<User> list = userService.list();
        System.out.println(list);
    }
  • 也有自己的批次操作等(batch)
  • 自定義方法(多表關聯)

7. 程式碼生成器(未完待續)

  • 每個介面都在繼承相同的BaseMapper,IService(程式碼冗餘,繁瑣)
  • MybatisPlus提供的程式碼生成器,一鍵生成mvc三層所有程式碼
  • 如何使用,引入下邊的包
 <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
            <version>3.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
        </dependency>

到此這篇關於零基礎搭建boot+MybatisPlus的文章就介紹到這了,更多相關boot+MybatisPlus搭建內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com