如何使用SpringFormController注释编写referenceData方法。我有几个java.util.Map对象,最后我在coomand对象中设置所有这些对象。如何使用Spring Form Controller返回此对象。 最初我使用以下代码显示表单:
@RequestMapping(method=RequestMethod.GET)
public String initForm(Model map){
TestDTO test=new TestDTO();
map.attribute("cmdtest",test);
return "test";
}
@ModelAttribute("customer")
public Model setup(Model map,HttpServletRequest request)
{
Map testData=testService.getTestData(request)
model.addAttribute("testData",testData);
return model;
}
如何在我的jsp页面中访问testData地图对象? 的问候,
拉吉
答案 0 :(得分:0)
地图可作为customer.testData在jsp页面中使用; “customer”因为那就是你命名你的ModelAttribute和“testData”的原因,因为那就是你在模型中命名的内容。
<p>Here is your testData: ${customer.testData}</p>