0


Spring-boot集成mybatis-plus

一.为什么使用Mybatis plus

1. 简化开发

  • 减少样板代码:MyBatis-Plus 封装了大量的 CRUD 操作,开发者无需为每个实体类编写复杂的 Mapper 文件和 SQL 语句,从而减少了大量的样板代码。
  • 自动填充:支持插入和更新时的字段自动填充,比如创建时间和更新时间,可以自动设置,减少手动赋值的工作量。

2. 功能丰富

  • 内置分页插件:提供了一套简单易用的分页插件,支持多种数据库的分页查询,开发者只需几行代码即可实现分页功能。
  • 条件构造器:提供了强大的条件构造器,可以轻松地构建复杂的查询条件,包括但不限于模糊查询、范围查询、排序等。
  • 乐观锁:内置了乐观锁机制,帮助解决高并发环境下的数据竞争问题。
  • 性能分析插件:可以监控 SQL 执行情况,帮助开发者发现并优化慢查询。

3. 无缝集成

  • 兼容 MyBatis:作为 MyBatis 的增强工具,MyBatis-Plus 完全兼容 MyBatis 的所有特性,同时提供更多的增强功能。这意味着开发者可以在现有 MyBatis 项目中无缝引入 MyBatis-Plus,而不需要对原有代码进行大规模修改。
  • Spring Boot 集成:与 Spring Boot 的集成非常方便,通过几个简单的配置就可以快速上手使用。

4. 社区活跃

  • 活跃的社区支持:MyBatis-Plus 拥有一个活跃的开发者社区,官方文档详尽,遇到问题时可以很容易地找到解决方案或得到帮助。

5. 开源免费

  • 开源免费:作为一个开源项目,MyBatis-Plus 免费提供给个人和企业使用,没有商业限制,适合各种规模的应用开发。

6. 提高开发效率

  • 提高开发效率:通过减少重复劳动,简化开发流程,使得开发者可以更加专注于业务逻辑的实现,从而大大提高了开发效率。

综上所述,MyBatis-Plus 不仅继承了 MyBatis 的优点,还在此基础上增加了许多实用的功能,极大地提升了开发效率和代码质量。如果你正在寻找一种既能简化数据库操作又能提高项目开发速度的方法,MyBatis-Plus 是一个值得尝试的选择。

二.spring-boot集成mybatis-plus

1.引入依赖

  1. <dependency>
  2. <groupId>com.baomidou</groupId>
  3. <artifactId>mybatis-plus-boot-starter</artifactId>
  4. <version>3.5.7</version>
  5. </dependency>
  6. 重点: (Mybatis plus是Mybatis的增强版,它只做增强不做修改,Mybatis plus中拥有Mybatis的
  7. 依赖,不需要再引入mybatis的相关依赖,否则可能会出现版本冲突问题)

2.添加配置

bootstrap.yml格式:

  1. #mysql配置
  2. spring:
  3. datasource:
  4. driver-class-name: com.mysql.cj.jdbc.Driver
  5. password: root
  6. username: root
  7. #这里要更改数据库,需要更改voredb,更改localhost端口号就可以了
  8. url: jdbc:mysql://localhost:3306/voredb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
  9. #mysql plus配置
  10. mybatis-plus:
  11. type-aliases-package: com.story.domain # 别名扫描包,指定实体类所在的包路径(改成自己的实体类路径)
  12. # 以下配置都是默认值,可以根据项目情况进行修改
  13. mapper-locations: "classpath*:/mapper/**/*.xml" # Mapper.xml 文件地址
  14. configuration:
  15. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 打印 SQL 语句
  16. map-underscore-to-camel-case: true # 是否开启下划线和驼峰的映射
  17. cache-enabled: false # 是否开启二级缓存
  18. global-config:
  19. db-config:
  20. id-type: assign_id # 默认雪花算法,另外还有 auto(自增id) assign_uuid(uuid)
  21. update-strategy: not_null # 更新策略: 只更新非空字段

application.properties格式:

  1. # MyBatis-Plus 配置
  2. # 别名扫描包,指定实体类所在的包路径(改成自己的实体类路径)
  3. mybatis-plus.type-aliases-package=com.story.domain
  4. # Mapper.xml 文件地址,指定映射文件的位置
  5. mybatis-plus.mapper-locations=classpath*:/mapper/**/*.xml
  6. # MyBatis 配置
  7. # 设置 MyBatis 的日志实现,这里使用标准输出
  8. mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
  9. # 是否开启下划线和驼峰的映射,例如将数据库中的 user_name 映射为实体类中的 userName
  10. mybatis-plus.configuration.map-underscore-to-camel-case=true
  11. # 是否开启二级缓存,默认为 false
  12. mybatis-plus.configuration.cache-enabled=false
  13. # MyBatis-Plus 全局配置
  14. # 主键生成策略,默认使用雪花算法(assign_id),还可以选择 auto(自增)、assign_uuid(UUID)
  15. mybatis-plus.global-config.db-config.id-type=assign_id
  16. # 更新策略,设置为 not_null 表示只更新非空字段
  17. mybatis-plus.global-config.db-config.update-strategy=not_null

3.实体类

  1. /**
  2. * 实体类
  3. */
  4. @Data
  5. public class User {
  6. /**
  7. * 主键 ID,使用雪花算法生成
  8. */
  9. @TableId(type = IdType.ASSIGN_ID)
  10. private Long id;
  11. /**
  12. * 名称
  13. */
  14. private String name;
  15. /**
  16. * 年龄
  17. */
  18. private Integer age;
  19. /**
  20. * 性别
  21. */
  22. private String sex;
  23. /**
  24. * 部门id
  25. */
  26. private Integer departmentId;
  27. }

注意注意

  1. @TableId: 用于标识实体类中的主键字段

属性:

    • type: 主键生成策略,可选值包括: - IdType.AUTO: 数据库自增- IdType.INPUT: 外部输入- IdType.NONE: 无主键- IdType.ASSIGN_ID: 使用雪花算法生成主键- IdType.ASSIGN_UUID: 使用 UUID 生成主键- IdType.ID_WORKER: 使用 Twitter 的 Snowflake 算法生成主键- IdType.UUID: 使用 UUID 生成主键
  1. @TableId(type = IdType.AUTO)
  2. private Long id;
  1. @TableName: 用于指定实体类对应的数据库表名

属性:

    • value: 表名
  1. @TableName("student")
  2. public class Student{
  3. // 字段
  4. }
  1. @TableField: 用于标识实体类中的普通字段

属性:

    • value: 字段名- exist: 是否存在该字段(默认为 true),如果设置为 false,则在生成 SQL 时不会包含该字段- fill: 字段填充策略,可选值包括: - FieldFill.DEFAULT: 默认不填充- FieldFill.INSERT: 插入时填充- FieldFill.UPDATE: 更新时填充- FieldFill.INSERT_UPDATE: 插入和更新时都填充
  1. @TableField("student_name")
  2. private String studentName;
  1. @TableField(fill = FieldFill.INSERT): 用于自动填充字段

属性:

    • fill: 字段填充策略,可选值包括: - FieldFill.DEFAULT: 默认不填充- FieldFill.INSERT: 插入时填充- FieldFill.UPDATE: 更新时填充- FieldFill.INSERT_UPDATE: 插入和更新时都填充
  1. /**
  2. * 实体类
  3. */
  4. @Data
  5. @TableName("student") // 指定表名
  6. public class User {
  7. /**
  8. * 主键 ID,使用雪花算法生成
  9. */
  10. @TableId(type = IdType.ASSIGN_ID) // 主键生成策略
  11. private Long id;
  12. /**
  13. * 用户名
  14. */
  15. @TableField("student_name") // 指定字段名
  16. private String name;
  17. /**
  18. * 年龄
  19. */
  20. private Integer age;
  21. /**
  22. * 性别
  23. */
  24. private String sex;
  25. /**
  26. * 创建时间,插入时自动填充
  27. */
  28. @TableField(fill = FieldFill.INSERT)
  29. private Date createTime;
  30. /**
  31. * 更新时间,更新时自动填充
  32. */
  33. @TableField(fill = FieldFill.UPDATE)
  34. private Date updateTime;
  35. /**
  36. * 逻辑删除字段
  37. */
  38. @TableLogic
  39. private Integer deleteId;
  40. /**
  41. * 版本号,用于乐观锁
  42. */
  43. @Version
  44. private Integer version;
  45. /**
  46. * 临时字段,不在数据库表中
  47. */
  48. @TableField(exist = false)
  49. private String tempField;
  50. }

4.数据访问层(mapper层)

创建mapper接口继承BaseMapper

  1. /**
  2. * Mapper 接口
  3. */
  4. @Mapper
  5. public interface StudentMapper extends BaseMapper<Student> {
  6. // 可以在这里添加自定义的 SQL 方法
  7. }

5.业务逻辑层(service层)

创建Service 接口继承IService

  1. /**
  2. * Service接口
  3. */
  4. public interface StudentService extends IService<Student> {
  5. // 可以在这里添加自定义的服务方法
  6. }

创建接口的实现类 继承ServiceImpl并实现service接口

  1. /**
  2. * ServiceImpl服务实现类
  3. */
  4. @Service
  5. public class StudentServiceImpl extends ServiceImpl<StudentMapper, Student> implements StudentService {
  6. // 可以在这里添加自定义的服务方法实现
  7. }

6.表现层(controller层)

  1. /**
  2. * 用户控制器
  3. */
  4. @RestController
  5. @RequestMapping("/student")
  6. public class UserController {
  7. @Autowired
  8. private StudentService studentService;
  9. /**
  10. * 获取所有用户
  11. * @return 用户列表
  12. */
  13. @GetMapping
  14. public List<Student> getAllStudent() {
  15. return studentService.list();
  16. }
  17. /**
  18. * 根据 ID 获取用户
  19. * @param id 用户 ID
  20. * @return 用户对象
  21. */
  22. @GetMapping("/{id}")
  23. public User getStudentById(@PathVariable Long id) {
  24. return studentService.getById(id);
  25. }
  26. /**
  27. * 添加用户
  28. * @param user 用户对象
  29. * @return 添加的用户对象
  30. */
  31. @PostMapping
  32. public User addStudent(@RequestBody Student student) {
  33. userService.save(student);
  34. return student;
  35. }
  36. /**
  37. * 更新用户
  38. * @param id 用户 ID
  39. * @param user 用户对象
  40. * @return 更新后的用户对象
  41. */
  42. @PutMapping("/{id}")
  43. public User updateStudent(@PathVariable Long id, @RequestBody Student student) {
  44. student.setId(id);
  45. studentService.updateById(student);
  46. return student;
  47. }
  48. /**
  49. * 删除用户
  50. * @param id 用户 ID
  51. */
  52. @DeleteMapping("/{id}")
  53. public void deleteStudent(@PathVariable Long id) {
  54. studentService.removeById(id);
  55. }
  56. }

本文转载自: https://blog.csdn.net/xbWGf/article/details/142533078
版权归原作者 唬了吧唧 所有, 如有侵权,请联系我们删除。

“Spring-boot集成mybatis-plus”的评论:

还没有评论