java - Using both @RequestBody and normal parameters -


I am using spring 3 controller with a flex client. I am now using @RequestBody to pass XML on the server How do I exceed the extra parameters?

Thank you.

You can mix and match easily:

  Public string handle (@RequestBody string xml, @RequestParam string x, @RequestParam string y) {...}  

Comments