mybatis的updateByPrimaryKeySelective方法如果是用mybatisplus怎么写
时间: 2024-02-02 11:03:58 浏览: 116
Mybatis Plus 自定义批量插入或批量更新(根据唯一索引)
如果你使用 Mybatis-Plus,你可以使用其提供的 `updateById` 方法来实现 `updateByPrimaryKeySelective` 的功能。
具体实现步骤如下:
1. 定义一个实体类,继承 `Model` 类,并添加 `@TableName` 注解。
```java
@TableName("your_table_name")
public class YourEntity extends Model<YourEntity> {
// 添加对应的属性和 getter/setter 方法
}
```
2. 在 DAO 层中,继承 `BaseMapper<YourEntity>` 接口,即可获取 Mybatis-Plus 提供的大量 CRUD 方法,包括 `updateById`。
```java
public interface YourDao extends BaseMapper<YourEntity> {
// 可以添加自定义的方法
}
```
3. 在 Service 层中,调用 `updateById` 方法,即可实现 `updateByPrimaryKeySelective` 的功能。
```java
@Service
public class YourService {
@Autowired
private YourDao yourDao;
public void update(YourEntity entity) {
yourDao.updateById(entity);
}
}
```
需要注意的是,如果 `YourEntity` 中某些属性为 null,`updateById` 方法不会更新这些属性的值。
阅读全文