mybatis-plu中多条件修改入门
时间: 2023-03-25 12:00:50 浏览: 121
Mybatis-Plus中多条件修改的入门步骤如下:
- 首先需要引入Mybatis-Plus的依赖,可以在pom.xml文件中添加以下依赖:
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.2</version>
</dependency>
- 在实体类中定义需要修改的字段,例如:
public class User {
private Long id;
private String name;
private Integer age;
// getter和setter方法省略
}
- 在Mapper接口中定义多条件修改的方法,例如:
public interface UserMapper extends BaseMapper<User> {
int updateByConditions(@Param("name") String name, @Param("age") Integer age, @Param("conditions") Wrapper<User> conditions);
}
其中,@Param注解用于指定参数名称,Wrapper是Mybatis-Plus提供的条件构造器,用于构造多条件查询的条件。
- 在Service层中调用Mapper接口中定义的多条件修改方法,例如:
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
@Override
public int updateByConditions(String name, Integer age, Wrapper<User> conditions) {
return userMapper.updateByConditions(name, age, conditions);
}
}
- 在Controller层中调用Service层中定义的多条件修改方法,例如:
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@PutMapping("/updateByConditions")
public String updateByConditions(String name, Integer age, @RequestBody JSONObject conditions) {
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.eq("gender", conditions.getString("gender"))
.like("address", conditions.getString("address"));
int result = userService.updateByConditions(name, age, wrapper);
return "更新成功,影响记录数:" + result;
}
}
其中,@RequestBody注解用于接收前端传递的JSON格式的条件参数,QueryWrapper用于构造多条件查询的条件。
以上就是Mybatis-Plus中多条件修改的入门步骤。