gpt4 book ai didi

java - Spring Boot - 从 2.2.5 升级到 2.3.0 后验证停止工作

转载 作者:行者123 更新时间:2023-12-01 09:01:16 24 4
gpt4 key购买 nike

我已经将 Spring Boot 项目从 2.2.5 迁移到 2.3.0,之后,验证停止工作(根本没有调用它们)。

我在变更日志文档( https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.3.0-M1-Release-Notes )中读到了 spring-boot-starter-validation现在需要手动添加作为依赖项。

所以,我将它添加到我的 pom.xml 中:

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

我的 pom parent 是:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<relativePath></relativePath>
</parent>

我的 Controller 看起来像这样:
@PostMapping( value = "/signup", consumes = MediaType.APPLICATION_JSON_VALUE )
@ResponseStatus( value = HttpStatus.OK )
public void signUp( @Valid @RequestBody ClientDto clientDto )
{
onboardingService.signUp( clientDto );
}

编辑:

我找到了问题所在,请查看下面的答案!

感谢大家的帮助!

最佳答案

验证启动器不再包含在 Web 启动器中。

spring-boot-starter-validation 不再是 spring-boot-starter-web 和 spring-boot-starter-webflux 的传递依赖。

为验证工作添加此依赖项。

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

关于java - Spring Boot - 从 2.2.5 升级到 2.3.0 后验证停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61959918/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com