I have a rather simple use case. The actor is a manager who provides feedback to a list of employees.
The view displays a list of employees. The manager (user) can click on each employee upon which a feedback form opens up (inline) to capture the feedback.
I have a List<Employee> which I am using to construct the listing of employees on the page. I am not able to understand how to structure and capture the feedback. I intend to have a separate bean, Feedback which correspond to the feedback of a particular Employee.
I started by building <form:form> in a loop and did this:
<c:forEach var="employee" items="${employees}" varStatus="stat">
<form:form action="${saveURL}" method="post" modelAttribute="feedback-${stat.index + 1}">
<input type="submit" value="Submit Feedback"/>
</form:form>
</c:forEach>
I am trying to keep the signature of my processAction method as follows:
@RequestMapping(params = "action=save")
public void saveFeedback(ActionRequest request, ActionResponse response, @ModelAttribute("feedback") Feedback feedback, Model model)
Unfortunately, I am not able to proceed with this as I feel I am missing some important design piece here.
How should I be structuring my <form:form> or saveFeedback method in order to achieve what I am trying to do?