文章目录
- 前言
- 一、引入库
- 二、案例
- 1.UserMapper
- 2.UserController
- 3. 结果
- 三、配置
- 总结
前言
MyBatis-Plus 是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。
上一篇内容已经整合过Mybatis,这里在上一篇的基础上使用Mybatis-Plus完成对User对象的查询。
一、引入库
兄弟们,要先注释掉之前的mybatis-spring-boot-starter
,配置可以重用。
<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-spring-boot3-starter</artifactId><version>3.5.6</version>
</dependency>
二、案例
1.UserMapper
package org.example.springboot3.mybatis.mappers;import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.example.springboot3.mybatis.model.User;import java.util.List;/*** Create by zjg on 2024/5/19*/
@Mapper
public interface UserMapper extends BaseMapper<User> {List<User> selectList();
}
2.UserController
package org.example.springboot3.mybatis.controller;import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import lombok.extern.log4j.Log4j2;
import org.example.springboot3.mybatis.mappers.UserMapper;
import org.example.springboot3.mybatis.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;/*** Create by zjg on 2024/5/19*/
@RequestMapping("/mybatis/")
@RestController
@Log4j2
public class UserController {@AutowiredUserMapper userMapper;@RequestMapping("001")public List mybatis001(){List<User> users = userMapper.selectList();log.info(users);return users;}@RequestMapping("002")public List mybatis002(){List<User> users = userMapper.selectList(new QueryWrapper<>());log.info(users);return users;}
}
3. 结果
[2024-05-20 19:54:08.620][http-nio-8080-exec-5][INFO]- org.example.springboot3.mybatis.controller.UserController.mybatis001(UserController.java:24) - [User(id=1, name=张三, age=11, brithDay=Mon May 19 00:00:00 CST 2014), User(id=2, name=李四, age=10, brithDay=Tue May 19 00:00:00 CST 2015)]
[2024-05-20 19:54:21.028][http-nio-8080-exec-6][INFO]- org.example.springboot3.mybatis.controller.UserController.mybatis002(UserController.java:30) - [User(id=1, name=张三, age=11, brithDay=Mon May 19 00:00:00 CST 2014), User(id=2, name=李四, age=10, brithDay=Tue May 19 00:00:00 CST 2015)]
我们使用mybatis-plus内置的接口,sql语句也没有编写,就达到了mybatis的同等效果。
三、配置
Mybatis-Plus无缝衔接Mybatis配置参数,我们使用起来是没有感知的,只需要把前缀修改为
mybatis-plus
mybatis-plus:mapper-locations: mappers/**/*.xmltype-aliases-package: org.example.springboot3.mybatis.modeltype-handlers-package: org.example.springboot3.mybatis.typehandlerconfiguration:map-underscore-to-camel-case: truedefault-fetch-size: 100default-statement-timeout: 30
总结
回到顶部
官方网站
快速开始
我发现就mybatis写的文档最好了。