以下是代码:
return new ModelAndView("redirect:/admin/create");
这是我在运行应用程序时得到的: 的 http://localhost:4647/GenAppRegistration/admin/create?accessmethod=direct
我想让它像这样加载: 的 http://localhost:4647/GenAppRegistration/admin/create
那么如何在 return语句中指定在返回视图时必须发生POST方法?
答案 0 :(得分:0)
从模型中删除accessmethod
返回之前:
如果您使用ModelAndView
mav:
mav.getModelMap().remove("accessmethod");
如果你使用Model
md:
md.remove("accessmethod");