我目前使用@ModelAttribute ClassName className
将我的网络表单“转换”为一个类。
@RequestMapping("/SaveEventRegistration")
public ModelAndView saveEventRegistration(@ModelAttribute EventRegistration userEventRegistration) {
我只是想知道我是否真的需要这样做。因为有一个通用的form
类,它列出了我的网络表单中的所有字段。
答案 0 :(得分:1)
您可以访问该请求:
@RequestMapping("/SaveEventRegistration")
public ModelAndView saveEventRegistration(HttpServletRequest request) {
然后使用以下方法手动获取表格数据:
request.getParameter("fieldName");