search
HomeJavajavaTutorialHow SpringBoot integrates Mybatis to implement addition, deletion, modification and query

First: Create a MySQL database

First we should create a database to operate our CRUD data (you can use visual tools to create it, or you can use SQL commands to create it), the name of the database You can define it yourself. After creating the database, we have to create a table to store the data. The name of the table is the 'user' table. The fields can be set by ourselves, as long as they correspond to the entities we create later.

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

CREATE TABLE `user` (
  `userId` bigint NOT NULL AUTO_INCREMENT,
  `userName` varchar(255) COLLATE utf8mb4_bin NOT NULL,
  `userAddress` varchar(255) COLLATE utf8mb4_bin NOT NULL,
  PRIMARY KEY (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

Second: Create a SpringBoot project and introduce the required dependency packages

Create a SpringBoot project using IDEA:

  • 1. Select Spring Initializr to create, and then select JDK 1.8, Java8 version.

  • 2. Select Spring Web, JDBC API, Mybatis Framework, MySQL Driver, and Lombok for initialization components, which may be used.

  • 3. After selecting, click Finish to create.

  • 4. After creating SpringBoot, check whether your Maven is configured properly. If not, check how to configure Maven. Otherwise, your pom dependencies will not be loaded. Just download Maven, how to change the Alibaba source image address and local warehouse, and then select Maven's xml file and local warehouse address in IDEA.

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

Above are If you forget to introduce the required dependency packages, you can add them directly without re-creating the project.

Third: Create the program directory and configure the core application.xml file

First you need to Create four folders, namely: Entity (user entity), Controller, Service, Dao, and then you need to create a new Mapper directory under the resource directory. This Mapper directory is used to store SQL statements. At this point, I think we need to understand the MVC model. Since our access is called one layer at a time, and then returns to the past after querying the data, our level should be: Controller (the control layer, which is also the layer that receives the parameters passed by the front end) -> Service (business layer, all our business, such as judgments and some loop statements need to be written in this layer) -> Dao (persistence layer, this layer mainly deals with the database, and is mainly responsible for data operations. That is, CRUD operation) -> Database,

is as shown in the figure below:

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

There is no good drawing tool, just I just drew it casually. Anyway, the flow of data is like this. You can take a look at it.

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

Create a yml file in the resources folder and enter the following content:

server:
  port: 8080    //本机的端口号
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/自己数据库的名称?useUnicode=true & characterEncoding=utf-8 &
      useSSL=true & serverTimezone=Asia/Shanghai
    username: root      //数据库的用户名
    password: xxxxxx    //数据库的密码

mybatis:
  mapper-locations: classpath:/Mapper/*.xml
  type-aliases-package: com.example.test.Entity    //这个是扫描到Entity实体包的路径,可根据自己的配置

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

After configuring the yml file, we go to the Databases on the right to see if we can connect to our local MySQL database:

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

##Fill in the data table name (our table here is the user table), user name and password, and database name

Fourth: Write the Entity, Dao, Service, and Controller layers in sequence , and create the mapper.xml file

Entity package: create a UserEntity class, the content is as follows:

public class UserEntity {
    private Integer userId;
    private String userName;
    private String userAddress;

    public Integer getUserId() {
        return userId;
    }

    public void setUserId(Integer userId) {
        this.userId = userId;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getUserAddress() {
        return userAddress;
    }

    public void setUserAddress(String userAddress) {
        this.userAddress = userAddress;
    }
}

Dao package: create a UserDao interface, the content As follows:

import com.example.test.Entity.UserEntity;
import org.apache.ibatis.annotations.Mapper;

import java.util.List;

@Mapper
public interface UserDao {
     List<UserEntity> queryLimit(Integer currentPage, Integer pageSize);

     Integer addUser(UserEntity user);

     Integer updateUser(UserEntity user);

     Integer deleteUser(UserEntity user);
}
Service package: Create a UserService class with the following content:

import com.example.test.Dao.UserDao;
import com.example.test.Entity.UserEntity;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service("UserService")
public class UserService {
    @Autowired
    private UserDao userDao;

    public List<UserEntity> queryLimit(Integer currentPage,Integer pageSzie){
        return userDao.queryLimit(currentPage,pageSzie);
    }

    public Integer addUser(UserEntity user){
        return userDao.addUser(user);
    }

    public Integer updateUser(UserEntity user){
        return userDao.updateUser(user);
    }

    public Integer deleteUser(UserEntity user){
        return userDao.deleteUser(user);
    }
}
Controller package: Create a UserController class with the following content:

import com.example.test.Entity.UserEntity;
import com.example.test.Service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import java.util.List;

@RestController
@RequestMapping("user")
public class UserController {
    @Autowired
    private UserService userService;

    String message = "";
    @RequestMapping("/queryLimit")
    public List<UserEntity> queryLimit(@RequestParam("currentPage") Integer currentPage,@RequestParam("pageSize") Integer pageSize){
        return userService.queryLimit(currentPage,pageSize);
    }

    @PostMapping("/addUser")
    public String addUer(@RequestBody UserEntity user){
        //用Mybatis执行insert语句的时候,插入成功会返回1,不成功则会抛出异常,捕获一下异常就好
        try {
            userService.addUser(user);
            message = "增加用户成功";
        }catch (Exception exception){
            message = "增加用户异常";
        }
        return message;
    }

    @PutMapping("/updateUser")
    public String updateUser(@RequestBody UserEntity user){
        //Mybatis的更新操作成功返回1,用户不存在返回0,失败则抛异常
        try {
            message = userService.updateUser(user) == 1?"更新用户成功":"用户不存在,更新失败";
        }catch (Exception exception){
            message = "更新异常";
        }
        return message;
    }

    @DeleteMapping("/deleteUser")
    public String deleteUser(@RequestBody UserEntity user){
        //Mybatis的删除操作和更新返回值一样,成功返回1,用户不存在返回0,失败则抛异常
        try {
            message = userService.deleteUser(user) == 1?"删除用户成功":"用户不存在,删除失败";
        }catch (Exception exception){
            message = "删除异常";
        }
        return message;
    }
}

After writing the above content, we need to create the mapper.xml file in the Mapper folder, as shown below:

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

mapper.xml文件内容如下:需要注意的地方是namespace:这个路径是你的UserDao接口的路径,因为你传过来的数据需要和xml进行一个绑定,这样你编写的SQL语句才能接收到你前端传过来的数据(大体意思可以这么理解),而id则是和你UserDao中的接口方法相对应,比如我的UserDao接口中的查找方法命名是queryLimit,那么我在xml文件中的查询语句的id就应该和queryLimit想对应,即:id=“queryLimit”。
resultType是返回数据的类型
parameterType则是传入的数据类型

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.test.Dao.UserDao">
    <select id="queryLimit" resultType="UserEntity">
        select * from user limit #{currentPage},#{pageSize};
    </select>

    <insert id="addUser" parameterType="UserEntity">
        insert into user(userName,userAddress) values(#{userName},#{userAddress});
    </insert>

    <update id="updateUser" parameterType="UserEntity">
        update user set userName=#{userName},userAddress=#{userAddress} where userId=#{userId};
    </update>

    <delete id="deleteUser" parameterType="UserEntity">
        delete from user where userId=#{userId};
    </delete>
</mapper>

最后我们需要在启动类加一点东西(MapperScan扫描的是我们Dao包的地址,填写自己的就好)

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

第五:测试结果(这里我用的postman来进行接口测试)

查询用户数据->地址为:http://localhost:8080/user/queryLimit?currentPage=0&pageSize=5

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

添加用户数据-> 地址为:http://localhost:8080/user/addUser

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

数据库也能看到数据:

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

更新用户数据-> 地址为:http://localhost:8080/user/updateUser

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

更新之后数据库数据为:

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

删除用户数据-> 地址为:http://localhost:8080/user/deleteUser

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

查看数据库数据已经删除:

How SpringBoot integrates Mybatis to implement addition, deletion, modification and query

The above is the detailed content of How SpringBoot integrates Mybatis to implement addition, deletion, modification and query. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software