mapper-spring-boot-starter和mp
时间: 2023-08-21 08:03:07 浏览: 106
spring-boot-starter
mybatis-plus-spring-boot-starter 是两个不同的开源项目。mapper-spring-boot-starter 是一个用于简化 MyBatis 开发的 Spring Boot Starter,它提供了一些便捷的功能和配置,使得在 Spring Boot 中使用 MyBatis 更加方便。mapper-spring-boot-starter 可以帮助开发人员自动扫描并注册 MyBatis 的 Mapper 接口,同时提供了一些常用的 CRUD 方法的实现。
而 mybatis-plus-spring-boot-starter 是 MyBatis-Plus 的官方 Spring Boot Starter,MyBatis-Plus 是一个基于 MyBatis 的增强工具,提供了一些额外的功能和扩展,简化了开发过程。mybatis-plus-spring-boot-starter 不仅包含了 mapper-spring-boot-starter 的功能,还提供了更多的 CRUD 方法和查询构造器等功能。
总结来说,mapper-spring-boot-starter 是一个专注于简化 MyBatis 开发的 Starter,而 mybatis-plus-spring-boot-starter 则是对 MyBatis 进行了更多功能增强的 Starter。
阅读全文