javax.validation not found in Spring boot 2.3

Viewed 5159

After upgrade to Spring Boot 2.3.1 javax.validation package not found.

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.1.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

Before it's working fine. Now imprort javax.validation.Valid; this import not resolved. Didn't found anything their release also here

Should I need to externally add this package now?

1 Answers
Related