Spring控制器方法中的冗余参数?

时间:2015-03-13 11:39:06

标签: java spring controller

我有 createForm ,它会显示给用户。因为你可以假设它是空的形式,用户必须填写信息。在我的控制器中,我有以下代码:

     @RequestMapping(value = {"", "/"}, method = RequestMethod.GET, params = "mode=create")
     public ModelAndView showCreatePage(@Nonnull @ModelAttribute("createForm") ApplicationCreateForm form)
                throws ClientException {
            return customMethod("ApplicationController/create");
        }

我们不需要使用要呈现给用户的信息填充表单所有字段都是空的,那么为什么我需要在metod ApplicationCreateForm表单中指定作为方法参数?是不必要的,还是Spring以某种方式使用?

0 个答案:

没有答案