SpringBoot集成MyBatis-Plus框架

1.说明

本文介绍Spring Boot集成MyBatis-Plus框架,
重点介绍需要注意的地方,
是SpringBoot集成MyBatis-Plus框架详细方法
这篇文章的脱水版,
主要是三个步骤,
增加mybatis-plus依赖,
创建Mapper类,
增加@MapperScan注解。

2.增加mybatis-plus依赖

在pom.xml中增加mybatis-plus依赖


    com.baomidou
    mybatis-plus-boot-starter
    3.3.2

3.创建Mapper类

创建Mapper类UserDao.java,
需要继承BaseMapper泛型类,
并且指定其中T为User类。

public interface UserDao extends BaseMapper {

}

4.增加@MapperScan注解

在Spring Boot启动类中增加@MapperScan注解,
用于扫描Mapper文件夹:

@MapperScan("com.example.demo.dao")
@SpringBootApplication
public class SpringbootMybatisPlusApplication {

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

你可能感兴趣的:(SpringBoot集成MyBatis-Plus框架)