#MyBatis Plus 國產的開源框架,基於 MyBatis 核心功能就是簡化 MyBatis 的開發,提高效率。 ##MyBatis Plus 快速上手 官網快速上手案例 Spring Boot(2.3.0) + MyBatis Plus(國產的開源框架,並沒有接入到 Spring 官方孵化器 ...
MyBatis Plus
國產的開源框架,基於 MyBatis
核心功能就是簡化 MyBatis 的開發,提高效率。
MyBatis Plus 快速上手 官網快速上手案例
Spring Boot(2.3.0) + MyBatis Plus(國產的開源框架,並沒有接入到 Spring 官方孵化器中)
1、創建 Maven 工程
2、pom.xml 引入 MyBatis Plus 的依賴
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1.tmp</version>
</dependency>
3、創建實體類
package com.southwind.mybatisplus.entity;
import lombok.Data;
@Data
public class User {
private Integer id;
private String name;
private Integer age;
}
4、創建 Mapper 介面
package com.southwind.mybatisplus.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.southwind.mybatisplus.entity.User;
public interface UserMapper extends BaseMapper<User> {
}
5、配置資料庫application.yml
spring:
datasource:
url: jdbc:mysql://localhost:3306/ssmbooks?useSSL=false&serverTimezone=UTC&characterEncoding=UTF-8
username: root
password: root
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
mapper-locations: classpath:com/bai/mapper/xml/*.xml
server:
port: 8181
6、啟動類需要添加 @MapperScan("mapper所在的包"),否則無法載入 Mppaer bean。
package com.southwind.mybatisplus;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@MapperScan("com.southwind.mybatisplus.mapper")
public class MybatisplusApplication {
public static void main(String[] args) {
SpringApplication.run(MybatisplusApplication.class, args);
}
}
7、測試
package com.southwind.mybatisplus.mapper;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class UserMapperTest {
@Autowired
private UserMapper mapper;
@Test
void test(){
mapper.selectList(null).forEach(System.out::println);
}
}
Mybatis-Plus常用註解
@TableName
映射資料庫的表名
package com.southwind.mybatisplus.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "user")
public class Account {
private Integer id;
private String name;
private Integer age;
}
@TableId
設置主鍵映射:
value 映射主鍵欄位名
type 設置主鍵類型,主鍵的生成策略,
AUTO(0),
NONE(1),
INPUT(2),
ASSIGN_ID(3),
ASSIGN_UUID(4),
/** @deprecated */
@Deprecated
ID_WORKER(3),
/** @deprecated */
@Deprecated
ID_WORKER_STR(3),
/** @deprecated */
@Deprecated
UUID(4);
值 | 描述 |
---|---|
AUTO | 資料庫自增 |
NONE | MP set 主鍵,雪花演算法實現 |
INPUT | 需要開發者手動賦值 |
ASSIGN_ID | MP 分配 ID,Long、Integer、String |
ASSIGN_UUID | 分配 UUID,Strinig |
INPUT 如果開發者沒有手動賦值,則資料庫通過自增的方式給主鍵賦值,如果開發者手動賦值,則存入該值。
AUTO 預設就是資料庫自增,開發者無需賦值。
ASSIGN_ID MP 自動賦值,雪花演算法。
ASSIGN_UUID 主鍵的數據類型必須是 String,自動生成 UUID 進行賦值
@TableField
映射非主鍵欄位:
value 映射欄位名
exist 表示是否為資料庫欄位 false,如果實體類中的成員變數在資料庫中沒有對應的欄位,則可以使用 exist,VO、DTO
select 表示是否查詢該欄位
fill 表示是否自動填充,將對象存入資料庫的時候,由 MyBatis Plus 自動給某些欄位賦值,create_time、update_time
實體類中添加成員變數
package com.southwind.mybatisplus.entity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@Data
@TableName(value = "user")
public class User {
@TableId
private String id;
@TableField(value = "name",select = false)
private String title;
private Integer age;
@TableField(exist = false)
private String gender;
@TableField(fill = FieldFill.INSERT)
private Date createTime;
@TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateTime;
}
@TableLogic
映射邏輯刪除
1、數據表添加 deleted 欄位
2、實體類添加註解
@TableLogic private Integer deleted;
3、application.yml 添加配置
global-config:
db-config:
logic-not-delete-value: 0
logic-delete-value: 1
查詢
mapper.selectList(null);
QueryWrapper wrapper = new QueryWrapper();
Map<String,Object> map = new HashMap<>();
map.put("name","小紅");
map.put("age",3);
wrapper.allEq(map);
wrapper.gt("age",2);
wrapper.ne("name","小紅");
wrapper.ge("age",2);
//like '%小'
wrapper.likeLeft("name","小");
//like '小%'
wrapper.likeRight("name","小");
//inSQL
wrapper.inSql("id","select id from user where id < 10");
wrapper.inSql("age","select age from user where age > 3");
wrapper.orderByDesc("age");
wrapper.orderByAsc("age");
wrapper.having("id > 8");
mapper.selectList(wrapper).forEach(System.out::println);
System.out.println(mapper.selectById(7));
mapper.selectBatchIds(Arrays.asList(7,8,9)).forEach(System.out::println);
//Map 只能做等值判斷,邏輯判斷需要使用 Wrapper 來處理
Map<String,Object> map = new HashMap<>();
map.put("id",7);
mapper.selectByMap(map).forEach(System.out::println);
QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("id",7);
System.out.println(mapper.selectCount(wrapper));
//將查詢的結果集封裝到Map中
mapper.selectMaps(wrapper).forEach(System.out::println);
System.out.println("-------------------");
mapper.selectList(wrapper).forEach(System.out::println);
//分頁查詢
Page<User> page = new Page<>(2,2);
Page<User> result = mapper.selectPage(page,null);
System.out.println(result.getSize());
System.out.println(result.getTotal());
result.getRecords().forEach(System.out::println);
Page<Map<String,Object>> page = new Page<>(1,2);
mapper.selectMapsPage(page,null).getRecords().forEach(System.out::println);
mapper.selectObjs(null).forEach(System.out::println);
System.out.println(mapper.selectOne(wrapper));
自定義 SQL(多表關聯查詢)
package com.southwind.mybatisplus.entity;
import lombok.Data;
@Data
public class ProductVO {
private Integer category;
private Integer count;
private String description;
private Integer userId;
private String userName;
}
package com.southwind.mybatisplus.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.southwind.mybatisplus.entity.ProductVO;
import com.southwind.mybatisplus.entity.User;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface UserMapper extends BaseMapper<User> {
@Select("select p.*,u.name userName from product p,user u where p.user_id = u.id and u.id = #{id}")
List<ProductVO> productList(Integer id);
}
添加
User user = new User();
user.setTitle("小明");
user.setAge(22);
mapper.insert(user);
System.out.println(user);
刪除
//mapper.deleteById(1);
// mapper.deleteBatchIds(Arrays.asList(7,8));
// QueryWrapper wrapper = new QueryWrapper();
// wrapper.eq("age",14);
// mapper.delete(wrapper);
Map<String,Object> map = new HashMap<>();
map.put("id",10);
mapper.deleteByMap(map);
修改
// //update ... version = 3 where version = 2
// User user = mapper.selectById(7);
// user.setTitle("一號");
//
// //update ... version = 3 where version = 2
// User user1 = mapper.selectById(7);
// user1.setTitle("二號");
//
// mapper.updateById(user1);
// mapper.updateById(user);
User user = mapper.selectById(1);
user.setTitle("小紅");
QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("age",22);
mapper.update(user,wrapper);