springboot整合mybatis如何实现按照条件查询
时间: 2023-07-20 15:03:20 浏览: 108
Mybatis框架(条件查询)
可以使用MyBatis提供的动态SQL语句实现按照条件查询。动态SQL语句是根据不同条件动态生成SQL语句的方式,可以通过if、choose、when、otherwise等标签来实现。
具体实现步骤如下:
1. 在Mapper.xml文件中定义SQL语句,并使用动态SQL标签包装查询条件,例如:
```xml
<select id="getUserList" resultType="User">
select * from user
<where>
<if test="name!=null and name!=''">
and name like concat('%',#{name},'%')
</if>
<if test="age!=null">
and age = #{age}
</if>
</where>
</select>
```
2. 在Java代码中调用Mapper接口中的方法,传入查询条件参数,例如:
```java
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
@Override
public List<User> getUserList(String name, Integer age) {
return userMapper.getUserList(name, age);
}
}
```
3. 在Controller中接收前端传来的查询条件参数,调用Service方法进行查询,例如:
```java
@RestController
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/users")
public List<User> getUserList(@RequestParam(required = false) String name,
@RequestParam(required = false) Integer age) {
return userService.getUserList(name, age);
}
}
```
以上就是整合SpringBoot和MyBatis进行按照条件查询的步骤。
阅读全文