mybatis-plus添加一条数据
时间: 2023-09-22 09:08:34 浏览: 193
使用Mybatis-Plus查询一条数据可以通过以下步骤实现:
1. 导入Mybatis-Plus的依赖包。
2. 创建一个实体类,用于映射数据库中的表。
3. 创建一个Mapper接口,继承BaseMapper接口,并指定泛型为实体类。
4. 在Mapper接口中定义一个查询方法,使用@Select注解,并指定SQL语句。
5. 在Service层中调用Mapper接口的查询方法,获取查询结果。
6. 在Controller层中将查询结果返回给前端。
示例代码如下:
1. 导入依赖包
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
```
2. 创建实体类
```java
@Data
public class User {
private Long id;
private String name;
private Integer age;
private String email;
}
```
3. 创建Mapper接口
```java
public interface UserMapper extends BaseMapper<User> {
@Select("SELECT * FROM user WHERE id = #{id}")
User selectById(Long id);
}
```
4. 在Service层中调用Mapper接口的查询方法
```java
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
@Override
public User getUserById(Long id) {
return userMapper.selectById(id);
}
}
```
5. 在Controller层中将查询结果返回给前端
```java
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/{id}")
public User getUserById(@PathVariable Long id) {
return userService.getUserById(id);
}
}
```
以上就是使用Mybatis-Plus查询一条数据的步骤。
阅读全文