Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javax.validation does not exist [closed]

Tags:

java

spring

Newbie question... I'm trying to get form validation working with Spring Web using this tutorial, but I'm getting this error:

package javax.validation does not exist

How can I resolve this? Do I need to install/link additional software? Other javax packages such as javax.servlet are accessible without a problem. I'm using NetBeans 7.0.

like image 643
Pieter Avatar asked May 03 '11 19:05

Pieter


1 Answers

Sounds like you're missing a JAR:

http://repository.jboss.org/maven2/javax/validation/validation-api/1.0.CR3/

like image 175
duffymo Avatar answered Oct 06 '22 22:10

duffymo