Bootstrap

mybatis plus当月数据查询_mybatis plus的3种查询方式(小结)

本文是基于springboot框架下的查询。

一:基本配置:

1.仓库依赖

alimaven

aliyun maven

http://maven.aliyun.com/nexus/content/groups/public/

true

false

alimaven

aliyun maven

http://maven.aliyun.com/nexus/content/groups/public/

true

false

2.springboot框架依赖

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-thymeleaf

com.baomidou

mybatis-plus-boot-starter

3.3.1.tmp

3.数据库依赖

mysql

mysql-connector-java

二. 三种查询方式

1.like对象查询 (Dept为数据库表,return index为返回的前端页面)

public String index(

String name,

Model model) {

QueryWrapper queryWrapper= new QueryWrapper<>();

if (name!=null && name.trim().length()>0){

queryWrapper.like(

;