Hi,
I have a question about success view in Spring MVC 2.5.
Supposed my workflow is like this: I have a
JSP which has a search functionality. On click of the find button,
I wanted to show the same jsp again with the table populated.
Here's my sample jsp.
I configured my controller like this. Both form view and success view are the same.
Here's my controller.
Problem is, when I click the find button. I encounter below error.
Neither BindingResult nor plain target object for bean name 'equipmentdetail' available as request attribute
On click of the find button, I wanted to retain the same criteria during the find and not clear it. I basically dont want to redirect but just a mere forward. Any thoughts?