响应中未显示 Spring Boot 验证错误消息

Posted

技术标签:

【中文标题】响应中未显示 Spring Boot 验证错误消息【英文标题】:Spring Boot validation error message not shown in response 【发布时间】:2022-01-09 16:41:56 【问题描述】:

我有以下简单的项目来测试 Spring Boot 验证。我使用的是 Spring Boot 2.5.6 版

pom.xml 中的验证依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-validation</artifactId>
</dependency>

DTO 对象

import javax.validation.constraints.NotNull;

public class DepartmentDTO 

    @NotNull(message = "Department name can not be empty")
    private String name;

    // getter and setter

REST 控制器

@RestController
public class DepartmentResource 

    @PostMapping("/departments")
    public ResponseEntity<DepartmentDTO> createDepartment(@Valid @RequestBody DepartmentDTO department) 
        return new ResponseEntity<>(department, HttpStatus.OK);
    

当我使用 null name 触发请求时,我收到错误响应,但消息丢失:


    "timestamp": "2021-12-03T09:13:52.729+00:00",
    "status": 400,
    "error": "Bad Request",
    "path": "/departments"

【问题讨论】:

也许这会有所帮助 - ***.com/a/33664636/4752210 【参考方案1】:

Spring Boot 限制错误响应中包含的信息,以降低将有关应用程序的敏感信息泄露给客户端的风险。您可以通过在application.propertiesapplication.yml 中设置some properties 来显式启用响应中的其他信息。

server.error.include-binding-errors=always
server.error.include-message=always

【讨论】:

以上是关于响应中未显示 Spring Boot 验证错误消息的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot如何返回我自己的验证约束错误信息

Spring Boot REST 验证错误响应

在 Spring Boot 中使用 Web Client Mono 获取 API 响应错误消息

CodeIgniter 中未显示验证 flashdata 错误

Spring Boot 休息 API

Spring-boot参数校验:基本用法