I see.
Is there any reason you cannot have each section it's own form and submit to different controllers which all have the same successView?
i.e. Image a page which looks like:
Code:
---------------------------------------
| Book name: Expert Spring MVC |
| and Web Flow |
| |
| Delete Edit Add Comment |
| |
| |
| Comment 1: this is a really good book |
| Delete Edit |
| |
| Comment 2: it really is! |
| Delete Edit |
---------------------------------------
(excuse the formatting horror
)
you could have a form wrapping the book section, and then a form wrapping each comment section. The book form might submit to /books/edit.htm or /books/delete.htm etc.
Would that work for you?