亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MyBatis與Spring Boot集成數據校驗

發布時間:2024-09-11 16:56:27 來源:億速云 閱讀:84 作者:小樊 欄目:編程語言

MyBatis 與 Spring Boot 集成數據校驗可以通過以下幾個步驟來實現:

  1. 添加依賴

pom.xml 文件中添加 MyBatis、Spring Boot Starter Web、Spring Boot Starter Validation 和 MyBatis-Spring-Boot-Starter 的依賴:

<dependencies>
    <dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>2.1.4</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-validation</artifactId>
    </dependency>
</dependencies>
  1. 創建實體類

創建一個實體類,例如 User,并使用 JSR 380 注解進行數據校驗:

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;

public class User {
    @NotBlank(message = "用戶名不能為空")
    @Size(min = 3, max = 20, message = "用戶名長度必須在3到20個字符之間")
    private String username;

    @NotBlank(message = "密碼不能為空")
    @Size(min = 6, max = 20, message = "密碼長度必須在6到20個字符之間")
    private String password;

    // 省略 getter 和 setter 方法
}
  1. 創建 Mapper 接口

創建一個 MyBatis Mapper 接口,例如 UserMapper,并定義相應的 SQL 查詢語句:

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper
public interface UserMapper {
    @Select("SELECT * FROM user")
    List<User> findAll();
}
  1. 創建 Service 層

創建一個 Service 層,例如 UserService,并注入 UserMapper

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class UserService {
    @Autowired
    private UserMapper userMapper;

    public List<User> findAll() {
        return userMapper.findAll();
    }
}
  1. 創建 Controller 層

創建一個 Controller 層,例如 UserController,并注入 UserService

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;

import javax.validation.Valid;

@RestController
public class UserController {
    @Autowired
    private UserService userService;

    @GetMapping("/users")
    public List<User> findAll() {
        return userService.findAll();
    }

    @PostMapping("/users")
    public String createUser(@Valid @RequestBody User user, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return bindingResult.getFieldError().getDefaultMessage();
        }
        userService.findAll();
        return "用戶創建成功";
    }
}

現在,當你向 /users 發送 POST 請求時,Spring Boot 會自動對請求體中的 JSON 數據進行校驗,如果數據不符合要求,將返回相應的錯誤信息。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

澄江县| 龙山县| 湘阴县| 宕昌县| 普兰县| 杭锦旗| 陈巴尔虎旗| 衡山县| 宜丰县| 江北区| 浦县| 桃江县| 江城| 金门县| 惠水县| 乡城县| 浦县| 安徽省| 邢台市| 义乌市| 福贡县| 札达县| 石屏县| 阳江市| 澄迈县| 灯塔市| 商丘市| 遂溪县| 南乐县| 台安县| 石首市| 东辽县| 马鞍山市| 邵阳县| 张掖市| 吉林省| 高密市| 任丘市| 赫章县| 中牟县| 昭苏县|