mybatisplus查询一个数据
时间: 2023-11-24 19:46:28 浏览: 73
mybatisplus分页查询
在使用 MyBatis Plus 查询数据时,可以使用 Wrapper 来构建查询条件。具体步骤如下:
1. 引入 MyBatis Plus 的依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>x.x.x</version>
</dependency>
```
2. 创建实体类对应的 Mapper 接口,继承 BaseMapper,并使用 @Mapper 注解标识:
```java
@Mapper
public interface UserMapper extends BaseMapper<User> {
}
```
3. 在业务层中调用 Mapper 方法进行查询操作,例如查询 id 为 1 的用户数据:
```java
@Service
public class UserService {
@Autowired
private UserMapper userMapper;
public User getUserById(Long id) {
return userMapper.selectById(id);
}
}
```
这样就可以通过调用 userMapper.selectById(id) 方法来查询 id 为 1 的用户数据。
阅读全文