Решение 1: Принять все параметры по отдельности, как показано ниже.
@RequestMapping(method = RequestMethod.POST, produces = "text/html")
public String create(@RequestParam("projectName") String projectName,@RequestParam("projectTask") String projectTask,,@RequestParam("projectStatus") String projectStatus, BindingResult bindingResult,
Model uiModel, HttpServletRequest httpServletRequest,RedirectAttributes redirectAttributes) {
*//code goes here*
}
Решение 2: Принять как объект pojo, как показано ниже.
@RequestMapping(method = RequestMethod.POST, produces = "text/html")
public String create(@Valid Project project, BindingResult bindingResult,Model uiModel, HttpServletRequest httpServletRequest,RedirectAttributes redirectAttributes) {
*//code goes here*
}
ПРИМЕЧАНИЕ. Создатькласс pojo, который включает эти поля для ссылки на Решение 2.