Is JSR-303 also intended for method parameter validation?

If so, is there any example on the web? The biggest challenge I'm facing is how to get a validator within each method. With Spring 3, doesn't it mean that I'd have to inject virtually every class with a LocalValidatorFactoryBean?

Thanks!

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

This sounds like a use case for AOP (AspectJ). Write a pointcut for methods that are annotated with javax.validation.constraints.*, inject a validator into the aspect (probably using Spring) and use a @Before or @Around advice to perform the validation before method execution.

Read AspectJ in Action for reference.

link|improve this answer
feedback

Method level validation will be supported in the upcoming version 4.2 of JSR 303's reference implementation Hibernate Validator.

As pointed out in the previous answer this will allow constraint annotations (built-in as well as custom defined types) to be specified at method parameters and return values to specify pre- and post-conditions for a method's invocation.

Note that HV will only deal with the actual validation of method calls not with triggering such a validation. Validation invocation could be done using AOP or other method interception facilities such as JDK's dynamic proxies.

The JIRA issue for this is HV-347 [1], so you might want to add yourself as watcher to this issue.

[1] http://opensource.atlassian.com/projects/hibernate/browse/HV-347

link|improve this answer
I think your blog post supplements your answer ;) musingsofaprogrammingaddict.blogspot.com/2011/01/… – Maxym Jan 27 '11 at 15:34
Gunnar was nice enough to put his solution into GitHub. Worked great for me. – Patrick Oct 13 '11 at 21:24
feedback

The javadocs for each of the JSR 303 annotations tells the following:

@Target(value={METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER})

See, PARAMETER is there. So, yes, it's technically possible.

Here's an example:

public void method(@NotNull String parameter) {
    // ...
}

I'm however not sure how that integrates with Spring since I don't use it. You could just give it a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.