SpringBoot - 优雅的实现参数校验高级进阶

Posted 小小工匠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot - 优雅的实现参数校验高级进阶相关的知识,希望对你有一定的参考价值。

文章目录


概述

日常开发中,对入参进行参数校验是必不可少的一个环节。 而使用最多的就是Validator框架 。

Validator校验框架遵循了JSR-303 【Java Specification Requests】验证规范 。

这里我们探讨下,在boot项目中如何优雅的集成参数校验框架


Step1 搞依赖

 <dependencies>
        <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>
  • spring boot-2.3之前的版本只需要引入 spring-boot-starter-web
  • spring boot-2.3及以后的版本,校验包是一个单独的starter,需要同时引入spring-boot-starter-validation

Step2 搞参数校验的实体类

以上是关于SpringBoot - 优雅的实现参数校验高级进阶的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot - 优雅的实现参数校验高级进阶

SpringBoot - 优雅的实现业务校验高级进阶

SpringBoot - 使用Assert校验让业务代码更简洁

SpringBoot - 使用Assert校验让业务代码更简洁

SpringBoot中如何实现业务校验,这种方式才叫优雅!

SpringBoot - 优雅的实现应用启动参数校验