mabitis-plus查询所有分类
时间: 2023-07-18 21:35:43 浏览: 83
对于Mybatis-Plus查询所有分类的操作,可以使用Mybatis-Plus提供的Wrapper类,实现一个空的查询条件,然后调用Mybatis-Plus的selectList方法来实现。
具体实现如下:
```
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.example.demo.entity.Category;
import com.example.demo.mapper.CategoryMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class CategoryService {
@Autowired
private CategoryMapper categoryMapper;
public List<Category> getAllCategories() {
QueryWrapper<Category> queryWrapper = new QueryWrapper<>();
List<Category> categoryList = categoryMapper.selectList(queryWrapper);
return categoryList;
}
}
```
在上述代码中,我们使用了QueryWrapper类,并传入一个空的查询条件,然后调用selectList方法查询所有分类。最终返回查询结果。
阅读全文