springboot 使用mybatisplus
时间: 2023-06-18 14:04:57 浏览: 80
MybatisPlus代码生成器(新)
使用 MyBatis-Plus 的步骤如下:
1. 引入 MyBatis-Plus 依赖
在 pom.xml 文件中添加以下依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.x.x</version>
</dependency>
```
2. 配置数据源
在 application.properties 或 application.yml 中配置数据源,例如:
```yaml
spring:
datasource:
url: jdbc:mysql://localhost:3306/mybatis_plus?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai
username: root
password: root
driver-class-name: com.mysql.cj.jdbc.Driver
```
3. 创建实体类
创建与数据库表对应的实体类,使用注解 @TableName 指定表名,使用注解 @TableId 指定主键。例如:
```java
@Data
@TableName("user")
public class User {
@TableId(type = IdType.AUTO)
private Long id;
private String name;
private Integer age;
}
```
4. 创建 Mapper 接口
创建继承 BaseMapper 的 Mapper 接口,例如:
```java
public interface UserMapper extends BaseMapper<User> {
}
```
5. 使用 MyBatis-Plus 进行数据库操作
使用 MyBatis-Plus 提供的方法进行数据库操作,例如:
```java
@Autowired
private UserMapper userMapper;
public void addUser(User user) {
userMapper.insert(user);
}
public User getUserById(Long id) {
return userMapper.selectById(id);
}
public List<User> getAllUsers() {
return userMapper.selectList(null);
}
```
以上就是使用 MyBatis-Plus 的基本步骤,更多的 API 可以参考官方文档。
阅读全文