温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么使用MybatisPlus快速进行增删改查

发布时间:2022-08-05 15:52:14 来源:亿速云 阅读:182 作者:iii 栏目:开发技术

这篇文章主要介绍了怎么使用MybatisPlus快速进行增删改查的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇怎么使用MybatisPlus快速进行增删改查文章都会有所收获,下面我们一起来看看吧。

    前言:

    mybatisplus 可以说是对mybatis更好的拓展,一些简单的增删改查的操作已经被作者实现,我们只需引用即可。

    1.数据库建表

    这里使用的是MySQL数据库,表名为student

    怎么使用MybatisPlus快速进行增删改查

    怎么使用MybatisPlus快速进行增删改查

    2.新建一个springboot项目

    这里使用的idea

    (1)、引入相应的jar包

    怎么使用MybatisPlus快速进行增删改查

    怎么使用MybatisPlus快速进行增删改查

    怎么使用MybatisPlus快速进行增删改查

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

    怎么使用MybatisPlus快速进行增删改查

    这里如有需要复制时,注意空白格,直接复制可能会报错

        
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.2.6.RELEASE</version>
            <relativePath/>
        </parent>
    
     <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <scope>runtime</scope>
                <optional>true</optional>
            </dependency>
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <scope>runtime</scope>
            </dependency>
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <optional>true</optional>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
        </dependencies>

    (2)、快速启动项目

    在此之前,先看看一看我的项目结构

    怎么使用MybatisPlus快速进行增删改查

    新建一个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相关依赖

    3.springboot结合mybatisplus

    (1)、引入mybatisplus以及其他依赖

    <!--mybatisplus-->
    <dependency>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatis-plus-boot-starter</artifactId>
        <version>3.2.0</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-freemarker</artifactId>
    </dependency>
    <!--数据库连接-->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <scope>runtime</scope>
    </dependency>

    (2)、创建application.yml文件,修改配置

    # 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

    (3)、创建mybaisplus配置类

    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;
        }
    }

    (4)、创建实体类

    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;
    
    /**
     * <p>
     * 
     * </p>
     *
     * @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;
    }

    (5)、创建mapper接口

    package com.zhu.mapper;
    
    import com.zhu.entity.Student;
    import com.baomidou.mybatisplus.core.mapper.BaseMapper;
    
    /**
     * <p>
     *  Mapper 接口
     * </p>
     *
     * @author xiaozhu
     * @since 2022-04-13
     */
    public interface StudentMapper extends BaseMapper<Student> {
    
    }

    (6)、创建service接口及其实现类

    package com.zhu.service;
    
    import com.zhu.entity.Student;
    import com.baomidou.mybatisplus.extension.service.IService;
    
    /**
     * <p>
     *  服务类
     * </p>
     *
     * @author xiaozhu
     * @since 2022-04-13
     */
    public interface StudentService extends IService<Student> {
    
    }
    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;
    
    /**
     * <p>
     *  服务实现类
     * </p>
     *
     * @author xiaozhu
     * @since 2022-04-13
     */
    @Service
    public class StudentServiceImpl extends ServiceImpl<StudentMapper, Student> implements StudentService {
    
    }

    (7)、创建controller

    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;
    
    /**
     * <p>
     *  前端控制器
     * </p>
     *
     * @author xiaozhu
     * @since 2022-04-13
     */
    @RestController
    @RequestMapping("/student")
    public class StudentController {
        
        @Autowired
        private StudentService studentService;
    
        //返回所有学生
        @GetMapping("/allStudent")
        public List<Student> 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快速进行增删改查”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“怎么使用MybatisPlus快速进行增删改查”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。

    向AI问一下细节

    免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

    AI