In Java Bean Validation (JSR 303), is there a way to programmatically (dynamically) add constraints in the code before the validate method is called (in addition to the constraints declared as annotations in the bean)?
In Java Bean Validation (JSR 303), is there a way to programmatically (dynamically) add
Share
The specification says
so I guess if any programmatic configuration exists, it is implementation specific and thus nonportable.