I'm having an issue with using @Valid on a parameter to a handler method on my @Controller. My code looks like this:

@RequestMapping(value=BIBBLE_BOBBLE_URI_PATTERN + "/widgets", method=RequestMethod.POST)
@ResponseBody
@ResponseStatus(HttpStatus.CREATED)
public Widget saveNewWidget(
        @PathVariable final String username,
        @PathVariable final String bibbleBobbleName,
        @Valid @RequestBody final Widget widget,
        final BindingResult results,
        final HttpServletRequest request,
        final HttpServletResponse response)

where Widget is the class for one of my domain objects. I'm using the @RequestBody annotation to indicate that the payload of the request maps to widget (in my tests, the requests are JSON, though Jackson is on my classpath so I could also use XML).

As you can see, the BindingResult parameter follows directly after the Widget parameter, but I get the following error:

java.lang.IllegalStateException: Errors/BindingResult argument declared without preceding model attribute. Check your handler method signature!

How do I apply the @Valid annotation to a @RequestBody parameter and then get the results?

Thanks.

P.S. I'm using annotation-driven to handle wiring up the controllers, do content-negotiation, etc.

link|improve this question

I'm learning all this still, but, try naming the attribute @ModelAttribute("xyz") Widget widget. – DecaniBass Jun 7 '11 at 9:25
@DecaniBass will that address the problem of it not binding any data that I mentioned in my comment on @craftsman's answer? – Hank Gay Jun 7 '11 at 9:47
feedback

3 Answers

up vote 5 down vote accepted

Are you using Spring 3.1? It is a newly added feature in Spring version 3.1. Please see Validation For @RequestBody Method Arguments

link|improve this answer
This is welcome news indeed, but I'm stuck on 3.0.5 at least until 3.1 goes final. Thanks for the pointer, though. – Hank Gay Jun 21 '11 at 10:37
3.1 is final / released/ out in the wild now. :) – finneycanhelp Jan 24 at 13:01
1  
I tried this in 3.1 and I still get that issue. – finneycanhelp Jan 25 at 12:20
The link just says annotate with "@valid" and "@requestbody", but I get the same error and am using 3.1 :-( – NimChimpsky Mar 1 at 12:04
please see blog.42.nl/articles/… – Ritesh Mar 4 at 3:17
feedback

This is an issue in spring 3.0 and it is fixed in 3.1 M2.

https://jira.springsource.org/browse/SPR-6709

If you are using spring 3.0, based on some threads and extensive reading, here is the best approach for this problem. An aspect oriented approach so that we can back out when you upgrade it to the version of spring which fixes this issue.

An aspect which intercepts calls to method which uses @RequestMapping annotation and for each parameter which has @Valid annotation on it, call the corresponding validator in the aspect.

link|improve this answer
feedback

Try replacing

@Valid @RequestBody final Widget widget,

with

@ModelAttribute @Valid final Widget widget,
link|improve this answer
That does apply the @Valid annotation, but it doesn't bind any data. The data comes in as the body of a JSON request, so my understanding is that I must use the`@RequestBody` annotation. Is there a way to get ModelAttribute to use the request body? Thanks. – Hank Gay May 26 '11 at 15:07
feedback

Your Answer

 
or
required, but never shown

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