其他分享
首页 > 其他分享> > SpringBoot整合tkMybatis基础教程

SpringBoot整合tkMybatis基础教程

作者:互联网

通用mapper

概念

使用Mybatis时,大的问题是,要写大量的重复SQL语句在xml文件中,除了特殊的业务逻辑SQL语句之外,还有大量结构类似的增删改查SQL。而且,当数据库表结构改动时,对应的所有SQL以及实体类都需要更改。这大量增 加了程序员的负担。避免重复书写CRUD映射的框架有两个

依赖

通用Mapper的作者也为自己的插件编写了启动器,我们直接引入即

	 <!-- 添加了tkmybatis的启动器依赖可以注释掉原本mybatis的依赖-->
	 
	 <!--<dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.4</version>
        </dependency>-->

        <dependency>
            <groupId>tk.mybatis</groupId>
            <artifactId>mapper-spring-boot-starter</artifactId>
            <version>2.0.2</version>
        </dependency>

实体类

tk mybatis 实体类使用的注解是jpa注解

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;

import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

@Data
@NoArgsConstructor
@AllArgsConstructor
@ToString

@Table
public class Admin {

    private static final long serialVersionUID = 1L;

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private int id;

    private String account;

    private String password;
}

注意事项:

  1. 默认表名=类名,字段名=属性名
  2. 表名可以使用 @Table(name = “tableName”) 进行指定 ,如果表名和实体类名相同可以不加name属性
  3. @Column(name = “fieldName”) 指定 ,如果字段名和属性名相同可以不加属性name
  4. 使用 @Transient 注解表示跟字段不进行映射
  5. 主键id必须要 @Id 使用指定,以及@GeneratedValue(strategy = GenerationType.IDENTITY)表示主键自增策略

不需要做任何配置就可以使用了

持久层

import com.kaikeba.entity.Admin;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import tk.mybatis.mapper.common.Mapper;

import java.util.List;

@Repository
public interface AdminMapper extends Mapper<Admin> {

    @Select("select * from admin")
    public List<Admin> findAll();

}

1、必须继承 tk mybatis提供的Mapper类,以及使用需要操作的bean类作为泛型参数
2、继承完也可以自行添加数据库操作

一旦继承了Mapper,继承的Mapper就拥有了Mapper所有的通用方法:

Select

方法: List select(T record);
说明:根据实体中的属性值进行查询,查询条件使用等号

方法: T selectByPrimaryKey(Object key);
说明:根据主键字段进行查询,方法参数必须包含完整的主键属性, 查询条件使用等号

方法: List selectAll();
说明:查询全部结果,select(null)方法能达到同样的效果

方法: T selectOne(T record);
说明:根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异 常,查询条件使用等号

方法: int selectCount(T record);
说明:根据实体中的属性查询总数,查询条件使用等号 Insert

方法: int insert(T record);
说明:保存一个实体,null的属性也会保存,不会使用数据库默认值 方法: int insertSelective(T record); 说明:保存一个实体,null的属性不会保存,会使用数据库默认值

Update

方法: int updateByPrimaryKey(T record);
说明:根据主键更新实体全部字段,null值会被更新

方法: int updateByPrimaryKeySelective(T record);
说明:根据主键更新属性不为null的值

Delete

方法: int delete(T record);
说明:根据实体属性作为条件进行删除,查询条件使用等号

方法: int deleteByPrimaryKey(Object key);
说明:根据主键字段进行删除,方法参数必须包含完整的主键属性

Example方法

方法: List selectByExample(Object example);
说明:根据Example条件进行查询 重点:这 个查询支持通过 Example 类指定查询列,通过 selectProperties 方法指定查询列

方法: int selectCountByExample(Object example);
说明:根据Example条件进行查询总数

方法: int updateByExample(@Param(“record”) T record, @Param(“example”) Object example);
说明:根据 Example条件更新实体 record 包含的全部属性,null值会被更新

方法: int updateByExampleSelective(@Param(“record”) T record, @Param(“example”) Object example);
说明:根据Example条件更新实体 record 包含的不是null的属性值

方法: int deleteByExample(Object example);
说明:根据Example条件删除数据

启动类

注意:必须使用tk mybatis的MapperScan

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import tk.mybatis.spring.annotation.MapperScan;

@SpringBootApplication
@MapperScan("com.kaikeba.mapper")
public class SpringbootMybatisApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringbootMybatisApplication.class, args);
    }

}

标签:SpringBoot,tkMybatis,int,查询,record,基础教程,mybatis,import,属性
来源: https://blog.csdn.net/Marikty/article/details/113746136