How can you use a command object with a GET request in an annotated controller under Spring 3?
I'd like to not having a bunch of @RequestParams in my method's arguments, and I have about 18 inputs that I need - so I wanted to be able to use a command object for this request..
Is there any sample code that I could see? I've used Spring 2.5 - and it's easy there - but how do you do it under Spring 3's annotations?