IDEA Spring Boot整合Mybatis Plus

Mybatis Plus官网:https://mp.baomidou.com/
优点:对于单数据库表操作便利,且不影响原有Mybatis功能,只做增强

1.添加Mybatis Plus依赖

pom.xml

		<!--Mybatis Plus-->
        <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.3.2</version>
        </dependency>

2.数据库

t_user表

CREATE TABLE `NewTable` (
`id`  int(11) NOT NULL AUTO_INCREMENT ,
`username`  varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ,
`password`  varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ,
`role_id`  int(11) NULL DEFAULT NULL ,
`createtime`  timestamp NULL DEFAULT CURRENT_TIMESTAMP ,
PRIMARY KEY (`id`)
)
ENGINE=InnoDB
DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci
AUTO_INCREMENT=13
ROW_FORMAT=DYNAMIC

在这里插入图片描述

3.对Bean基础类添加注解

User

@TableName("t_user") // 数据库表格名称
public class User {
    /**
     * value 对应数据库表格中主键的字段名称
     * type IdType.AUTO枚举类,意味对应数据库中的主键自动增长
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;

    private String username;

    private String password;

    private Integer roleId;

    private Date createtime;
    // set/get,构造函数及toString省略...
}

4.MP配置类

MybatisPlusConfig配置类

@Configuration
@MapperScan("com.cx.mybatis.mapper")
public class MybatisPlusConfig {
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        PaginationInterceptor paginationInterceptor = new PaginationInterceptor();
        // 开启 count 的 join 优化,只针对部分 left join
        paginationInterceptor.setCountSqlParser(new JsqlParserCountOptimize(true));
        return paginationInterceptor;
    }
}

5.在已有的Spring Boot Mybatis工程基础上继承BaseMapper

UserMapper

public interface UserMapper extends BaseMapper<User> {

}

6.测试功能

UserTest测试类

@RunWith(SpringRunner.class)
@SpringBootTest
public class UserTest {
    @Autowired
    UserMapper userMapper;
    @Test
    public void test01() {
        // 运用自带CRUD接口方法
        User user = userMapper.selectById(2);
        System.out.println(user);
    }

    @Test
    public void test02() {
        // 运用条件构造器方式查询
        QueryWrapper<User> queryWrapper = new QueryWrapper<>();
        queryWrapper.eq("password", "123");
        List<User> userList = userMapper.selectList(queryWrapper);

        for (User user : userList) {
            System.out.println(user);
        }
    }
}

运行结果
在这里插入图片描述
test01
在这里插入图片描述
test02
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ww空ww

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值