溫馨提示×

溫馨提示×

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

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

如何搭建boot+MybatisPlus

發(fā)布時(shí)間:2022-03-21 09:14:17 來源:億速云 閱讀:128 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹如何搭建boot+MybatisPlus,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

1.準(zhǔn)備工作

1.1 創(chuàng)建數(shù)據(jù)庫表

創(chuàng)建表

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

在可視化工具中添加數(shù)據(jù)(我不太會(huì)寫sql)

1.2 創(chuàng)建boot項(xiàng)目

1.3 創(chuàng)建實(shí)體類(映射數(shù)據(jù)庫表)

2.使用mybatisPlus(操作數(shù)據(jù)庫)

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 配置數(shù)據(jù)庫信息

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 創(chuàng)建mapper接口

該接口中提供了常用的crud方法,我們只需要從容器中獲取mapper操作數(shù)據(jù)即可

package com.hand.demo.mapper;

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

/**
 * 用戶數(shù)據(jù)訪問層接口
 * */
public interface UserMapper extends BaseMapper<User> {
}

2.4 配置mapper掃描

  • 在啟動(dòng)類中配置我們的mapper在哪個(gè)包

  • 兩種方法:@Mapper注解(麻煩);@MapperScan(在主啟動(dòng)類上進(jìn)行配置)

@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實(shí)現(xiàn)類對(duì)象(mybatisPlus容器會(huì)使用動(dòng)態(tài)代理生成該接口的實(shí)現(xiàn)類對(duì)象,并注入到spring容器中
     * 所以我們只需要在這定義一個(gè)成員變量,通過注解自動(dòng)注入即可)
     * */
    @Test
    public void testQueryAll() {
        List<User> userList = userMapper.selectList(null);
        System.out.println(userList);
    }
}

3. 常用設(shè)置

3.1 設(shè)置表映射規(guī)則

設(shè)置表前綴配置

3.2 主鍵生成策略(默認(rèn)基于雪花算法)

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

3.3 全局設(shè)置

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

3.4 字段與列名的駝峰映射(默認(rèn)開啟)

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

3.5 日志設(shè)置

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(條件構(gòu)造器)

5.1

 Wrapper
           AbstractWrapper    
    QueryWrapper   UpdateWrapper

QueryWrapper的select可以設(shè)置需要查詢的列

6. service層使用

  • 不需要手動(dòng)注入該泛型內(nèi)的mapper

  • 如果需要?jiǎng)e的mapper手動(dòng)注入就行

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)

  • 自定義方法(多表關(guān)聯(lián))

7. 代碼生成器(未完待續(xù))

  • 每個(gè)接口都在繼承相同的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”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)
推薦閱讀:
  1. DNS搭建
  2. gitlab搭建

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI