cnelson
Aug 31st, 2004, 12:43 AM
I have a pretty basic question. I'm using spring's MVC, and loving it. I've made much use of the SimpleFormController, as well as my own implementation of the top level Controller interface.
When would one normally use the AbstractCommandController? I haven't needed it yet, and don't recall there being any examples in the distribution which use it.
What about this common scenario:
1) A page dynamically displays zero of more widgets.
2) User is able to select any one widget.
3) User presses the "edit widget" button.
4) The widget editor (a SimpleFormController) displays the selected widget in a form and allows changes to be made, and the form is validated before the changes are applied.
Would you subclass AbstractCommandController for the "selection page" above (1-3)? Or would you just use the SimpleFormController again? I personally have been using my own implementations of Controller for that type of scenario.
What scenarios have you found AbstractCommandController useful?
Thanks in advance,
Christian
When would one normally use the AbstractCommandController? I haven't needed it yet, and don't recall there being any examples in the distribution which use it.
What about this common scenario:
1) A page dynamically displays zero of more widgets.
2) User is able to select any one widget.
3) User presses the "edit widget" button.
4) The widget editor (a SimpleFormController) displays the selected widget in a form and allows changes to be made, and the form is validated before the changes are applied.
Would you subclass AbstractCommandController for the "selection page" above (1-3)? Or would you just use the SimpleFormController again? I personally have been using my own implementations of Controller for that type of scenario.
What scenarios have you found AbstractCommandController useful?
Thanks in advance,
Christian