1
我想測試下面的控制器方法。有沒有辦法添加一個Profile對象
模擬請求?測試後的方法春天
MockHttpServletRequest request = new MockHttpServletRequest();
//request.add(myProfile);
@RequestMapping(value = "/", method = RequestMethod.POST)
public View postUser(ModelMap data, @Valid Profile profile) {}
。我的個人資料不能是一個字符串? – pethel
是的,我的意思是您的配置文件將由Spring MVC堆棧根據您傳入的請求參數創建。比如,如果你的Profile類有id,name等字段,你需要傳入id,name等,Spring MVC棧會將這些請求參數綁定到Profile對象中(它將創建一個Profile對象,映射id,名稱字段添加到Profile對象中的字段)。 –
啊哈。謝謝! – pethel