前言:mybatisplus 可以说是对mybatis更好的拓展,一些简单的增删改查的操作已经被作者实现,我们只需引用即可。
这里使用的是MySQL数据库,表名为student


这里使用的idea



修改一下springboot的版本 最好与此一致,其他版本不确定是否兼容

这里如有需要复制时,注意空白格,直接复制可能会报错
org.springframework.boot
spring-boot-starter-parent
2.2.6.RELEASE
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-devtools
runtime
true
mysql
mysql-connector-java
runtime
org.projectlombok
lombok
true
org.springframework.boot
spring-boot-starter-test
test
在此之前,先看看一看我的项目结构
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-vdJ6cRtB-1649861709999)(C:Usersjsj rj201zdpAppDataRoamingTypora ypora-user-imagest9861657658.png)]](https://1000bd.com/contentImg/2022/08/02/174621020.png)
新建一个controller包,在controller包下新建一个HelloController.java
package com.zhu.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping(“/test”)
public class HelloController {
@RequestMapping("/hello")
public String hello(){
return "hello";
}
}
springboot启动类,运行main即可
package com.zhu;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MybatisplusDemoApplication {
public static void main(String[] args) {
SpringApplication.run(MybatisplusDemoApplication.class, args);
}
}
在浏览器(这里使用的谷歌浏览器)中输入地址: http://localhost:8080/test/hello
至此,一个springboot项目快速启动完成,下面我们需要引入mybatisplus相关依赖
com.baomidou
mybatis-plus-boot-starter
3.2.0
org.springframework.boot
spring-boot-starter-freemarker
mysql
mysql-connector-java
runtime
# DataSource Config
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/此处为你的数据库名?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai
username: 你的数据库用户名
password: 你的数据库密码
mybatis-plus:
# xml文件扫描
mapper-locations: classpath*:/mapper/**Mapper.xml
package com.zhu.config;
import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@Configuration
@MapperScan("com.zhu.mapper")//mapper接口扫描注解
@EnableTransactionManagement
public class MyBatisPlusConfig {//分页配置,本博客不展示分页操作
@Bean
public PaginationInterceptor paginationInterceptor() {
PaginationInterceptor paginationInterceptor = new PaginationInterceptor();
return paginationInterceptor;
}
}
package com.zhu.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
*
*
*
*
* @author xiaozhu
* @since 2022-04-13
*/
//使用lombok,简化了代码,不用书写set get等方法
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class Student implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 自动递增
*/
@TableId(value = "sno", type = IdType.AUTO)
private Integer sno;
private String sname;
private String sex;
private Integer age;
private Integer clas;
}
package com.zhu.mapper;
import com.zhu.entity.Student;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
*
* Mapper 接口
*
*
* @author xiaozhu
* @since 2022-04-13
*/
public interface StudentMapper extends BaseMapper {
}
package com.zhu.service;
import com.zhu.entity.Student;
import com.baomidou.mybatisplus.extension.service.IService;
/**
*
* 服务类
*
*
* @author xiaozhu
* @since 2022-04-13
*/
public interface StudentService extends IService {
}
package com.zhu.service.impl;
import com.zhu.entity.Student;
import com.zhu.mapper.StudentMapper;
import com.zhu.service.StudentService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
*
* 服务实现类
*
*
* @author xiaozhu
* @since 2022-04-13
*/
@Service
public class StudentServiceImpl extends ServiceImpl implements StudentService {
}
package com.zhu.controller;
import com.zhu.entity.Student;
import com.zhu.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
*
* 前端控制器
*
*
* @author xiaozhu
* @since 2022-04-13
*/
@RestController
@RequestMapping("/student")
public class StudentController {
@Autowired
private StudentService studentService;
//返回所有学生
@GetMapping("/allStudent")
public List findAllStudent(){
return studentService.list();
}
//根据学号查询学生
@GetMapping("/findBySno/{sno}")
public Student findBySno(@PathVariable("sno") Integer sno){
return studentService.getById(sno);
}
//根据学号删除学生信息(此方法可以使用软件postman进行测试)
@DeleteMapping("/deleteBySno/{sno}")
public boolean deleteBySno(@PathVariable("sno") Integer sno){
return studentService.removeById(sno);
}
//增加一个学生信息(此方法可以使用软件postman进行测试),注意学号自增
@PostMapping("/add")
public boolean add(@RequestBody Student student){
return studentService.save(student);
}
//根据学号修改学生信息(此方法可以使用软件postman进行测试),注意学号自增
@PutMapping("/update")
public boolean update(@RequestBody Student student){
return studentService.updateById(student);
}
}
至此,我们完成了mybatisplus的快速的入门级别的增删改查
先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。深知大多数初中级java工程师,想要升技能,往往是需要自己摸索成长或是报班学习,但对于培训机构动则近万元的学费,着实压力不小。自己不成体系的自学效率很低又漫长,而且容易碰到天花板技术停止不前。因此我收集了一份《java开发全套学习资料》送给大家,初衷也很简单,就是希望帮助到想自学又不知道该从何学起的朋友,同时减轻大家的负担。添加下方名片,即可获取全套学习资料哦