Controller 1:
@RequestMapping(value = "/allEmployees", method = RequestMethod.GET)
public String getAllEmployees(@ModelAttribute("employeeListForm") EmployeeListForm employeeListForm, HttpServletRequest request, HttpServletResponse response, Model model, BindingResult errors) throws Exception {
List<Employee> subList = null;
allEmployees = empService.getAllEmployees(categoryId);
employeeListForm.setAllEmployees("allEmployees");
employeeListForm.setCategory("IT");
model.addAttribute("etcSearchForm", etcSearchForm);
return ALL_EMP_VIEW;
}
@RequestMapping(value = "/allEm