我試圖從DB中檢索用戶信息並使用Spring MVC在前端(JSP)中顯示。如何在Spring MVC中使用model.addAttributes添加對象
控制器裏面,我目前加入以下代碼,
ModelMap model;
model.addAttribute("email", user.getEmailAddress());
model.addAttribute("name", user.getuserName());
model.addAttribute("birthday", user.getBirthday());
model.addAttribute("street",user.getUserAddress().getStreet_address());
model.addAttribute("state", user.getUserAddress().getState());
model.addAttribute("city", user.getUserAddress().getCity());
model.addAttribute("zip", user.getUserAddress().getZip());
model.addAttribute("country", user.getUserAddress().getCountry());
在前端JSP,我展示他們使用$ {EMAIL} $ {name}的$ {}生日等。不過我想這樣做,
ModelMap model; model.addAttribute(「user」,user);
並在前端顯示爲$ {user.getName()}。但是這不起作用。你能否告訴我是否有其他方法可以做到這一點?
可變modelMap應該是模型在這裏。 – akshayb
@akshayb謝謝..更新了答案 – Prabhakaran
@Prabhakaran我們可以在模型屬性中插入空格或換行符... bcoz我的模型將整個字符串返回給jsp頁面...但我需要每個新聞都有空間b/w。 .... model.addAttribute( 「新聞」,新聞+ 「\ n」); – chopss