导入maven依赖(用springboot整合mybatis-plus为例)
<parent>
? ? ? ?<groupId>org.springframework.boot</groupId>
? ? ? ?<artifactId>spring-boot-starter-parent</artifactId>
? ? ? ?<version>2.5.5</version>
? ?</parent>
?
? ?<dependencies>
? ? ? ?<dependency>
? ? ? ? ? ?<groupId>mysql</groupId>
? ? ? ? ? ?<artifactId>mysql-connector-java</artifactId>
? ? ? ?</dependency>
?
? ? ? ?<dependency>
? ? ? ? ? ?<groupId>org.projectlombok</groupId>
? ? ? ? ? ?<artifactId>lombok</artifactId>
? ? ? ?</dependency>
?
? ? ? ?<dependency>
? ? ? ? ? ?<groupId>com.baomidou</groupId>
? ? ? ? ? ?<artifactId>mybatis-plus-boot-starter</artifactId>
? ? ? ? ? ?<version>3.4.3.4</version>
? ? ? ?</dependency>
?
? ? ? ?<dependency>
? ? ? ? ? ?<groupId>org.springframework.boot</groupId>
? ? ? ? ? ?<artifactId>spring-boot-starter-test</artifactId>
? ? ? ?</dependency>
? ?</dependencies>
配置数据源
spring:
datasource:
? url: jdbc:mysql://localhost:3306/retail
? ?# url后面一定要写数据库,因为mybatisplus没有配置文件选择数据库
? driver-class-name: com.mysql.cj.jdbc.Driver
? username: root
? password: root
编写Mapper类继承BaseMapper<T>
@Repository // 注入Spring容器
@Mapper // 解释为Mapper数据库访问类
// 一定要有这两个注解
public interface UserMapper extends BaseMapper<User>{
}
如何把实体类和表单对应呢? 表单名和pojo类名必须一致 ! ! ! 或者可以配置前缀
如何把列名和pojo属性对应呢? 列名和pojo属性名必须一致
配置日志
configuration:
? log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
? ?# MP默认无日志, 可以设置日志,StdOutImpl是标准输出日志,也可以设置成其他的日志
然后就能愉快地使用MP中强大的增删查改了
|