导入上面这个增强版依赖之后,下面两个依赖无需再次导入:
org.mybatis.spring.boot
mybatis-spring-boot-starter
2.1.4
org.springframework.boot
spring-boot-starter-jdbc
===================================================================
-
MybatisPlusAutoConfiguration 配置类,MybatisPlusProperties 配置项绑定。mybatis-plus:xxx 就是对mybatis-plus的定制
-
SqlSessionFactory 自动配置好。底层是容器中默认的数据源,即使用spring容器中的数据源
-
mapperLocations自动配置好的。有默认值。classpath*:/mapper/**/*.xml;任意包的类路径下的所有mapper文件夹下任意路径下的所有xml都是sql映射文件。建议以后sql映射文件,放在 mapper下
-
容器中也自动配置好了 SqlSessionTemplate
-
@Mapper 标注的接口也会被自动扫描;建议直接 @MapperScan(“com.atguigu.admin.mapper”)批量扫描就行
========================================================================
1.创建Dao接口继承BaseMapper,里面有默认的增删改查方法
@Mapper
public interface UserMapper extends BaseMapper{}
BaseMapper接口内容如下:
public interface BaseMapper extends Mapper {
int insert(T entity);
int deleteById(Serializable id);
int deleteByMap(@Param(“cm”) Map<String, Objec