Reputation: 337
I can't import that simple library, i have all jar files, also i tried Ivalidate Caches / Restart. Maybe i have to add validation to build path, but i don't know to which file.
Upvotes: 4
Views: 24794
Reputation: 1
Try this,
Step-by-step:
Open "build.gradle" file. It's in your root folder project;
Include the line below inside "dependencies{ }": implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
Save and close build.gradle file;
Next, you will see a short notification on the top of your screen to "Load Gradle Changes". Click on it.
If you don't see any notification, click on Gradle side bar, and then click on "Reload All Gradle Projects".
Upvotes: 0
Reputation: 1334
You just need to add spring-boot-starter-validation
dependency in build.gradle
file
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
}
Upvotes: 4
Reputation: 65
You just need to add the dependency Validation API in the pom.xml:
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.0.Final</version>
</dependency>
Links: https://www.baeldung.com/javax-validation
Upvotes: 7
Reputation: 7057
If you get this error after attempting to import a Maven project, it may be that you need to check "Import Maven projects automatically" in the Import Project wizard. Without that the IntelliJ build may not be able to locate Maven dependencies, even if they are declared in pom.xml files.
Upvotes: -1
Reputation: 337
Got it.
Click OK
THEN:
Upvotes: 6
Reputation: 136
What build tool do you use? You obviously forgot to declare your dependencies, that's why IDEA doesn't know where to look for the classes you are trying to import.
Upvotes: 2