Spring MVC @MatrixVariable表单数据绑定

时间:2016-07-12 14:41:04

标签: spring-mvc

我有表单提交的控制器方法。此方法接受一个@RequestParam和一个@MatrixVariable。我必须使用此方法处理具有动态属性的某个项目。例如:

@RequestMapping(path = "/item/add", method = RequestMethod.GET)
public String addItem(@RequestParam("itemName") String itemName, @MatrixVariable MultiValueMap<String, String>
                properties) {
    // do some stuff...
    return "redirect:/items";
}

使用直接URL可以正常工作,但表单的外观,动作和输入如何满足提供的控制器方法。我使用百里香作为模板引擎。 谢谢你提前!

0 个答案:

没有答案