您好,登錄后才能下訂單哦!
這篇文章主要介紹Spring MVC處理方法返回值的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
對(duì)于Spring MVC處理方法支持支持一系列的返回方式:
(1)ModelAndView
(2)Model
(3)ModelMap
(4)Map
(5)View
(6)String
(7)Void
(8)Object
一,ModelAndView
@RequestMapping("/threadRequest*") public ModelAndView threadRequest(){ ModelAndView mv=new ModelAndView(); mv.setViewName("index"); mv.addObject("user","王五"); return mv; }
通過ModelAndView構(gòu)造方法可以指定返回的頁面名稱,也可以通過setViewName()方法跳轉(zhuǎn)到指定的頁面 ,
使用addObject()設(shè)置需要返回的值,addObject()有幾個(gè)不同參數(shù)的方法,可以默認(rèn)和指定返回對(duì)象的名字。
調(diào)用addObject()方法將值設(shè)置到一個(gè)名為ModelMap的類屬性,ModelMap是LinkedHashMap的子類,
二,Model
Model是一個(gè)接口, 其實(shí)現(xiàn)類為ExtendedModelMap,繼承了ModelMap類。
model.addAttribute("pojo", pojo);
三,ModelMap
Model 是一個(gè)接口, 其實(shí)現(xiàn)類為ExtendedModelMap,繼承了ModelMap類。
四,Map
@RequestMapping("/show") public Map<String, String> getMap() { Map<String, String> map = new HashMap<String, String>(); map.put("key1", "value-1"); map.put("key2", "value-2"); return map; }
五,View
可以返回pdf excel
六,String
@RequestMapping("/RequestMethod") public String index(Model model) { String retVal = "user/index"; List<User> users = userService.getUsers(); model.addAttribute("users", users); return retVal; }
1、如果返回值為null,那么以請(qǐng)求名作為視圖名進(jìn)行跳轉(zhuǎn)
2、如果指定返回值,那么按照指定返回值作為視圖名進(jìn)行跳轉(zhuǎn),可以通過model,modeMap攜帶數(shù)據(jù)。
3、如果返回值帶有forward或者redirect前綴,那么將會(huì)進(jìn)行相應(yīng)的請(qǐng)求或重定向,不過不能通過mvc的數(shù)據(jù)模型攜帶數(shù)據(jù),可以通過ServletApi攜帶數(shù)據(jù)。
七,Void
@RequestMapping("/index") public void firstRequest(HttpServletRequest request, HttpServletResponse response,HttpSession session) throws ServletException, IOException { UserInfo info=new UserInfo(); info.setUser_id(1); info.setUser_name("張三"); /** * Json格式傳遞 */ response.setCharacterEncoding("UTF-8"); String value=JSON.toJSONString(info); response.getWriter().write(value); }
八,Object
@RequestMapping("/fourthRequest") @ResponseBody //響應(yīng)體返回?cái)?shù)據(jù)時(shí),除了手動(dòng)裝換JSON格式字符串以外可以使用jackson public Object fourthRequest(){ List<UserInfo> userList=new ArrayList<>(); UserInfo info=new UserInfo(); info.setUser_id(1); info.setUser_name("張三"); UserInfo info2=new UserInfo(); info2.setUser_id(2); info2.setUser_name("李四"); userList.add(info); userList.add(info2); return userList; }
1.當(dāng)方法返回值為Null時(shí),默認(rèn)將請(qǐng)求路徑當(dāng)做視圖 /jsp/thread/secondRequest.jsp 如果說沒有試圖解析器,如果返回值為Null攜帶數(shù)據(jù)只能用JSON
2.當(dāng)方法返回值為String類型字符串時(shí),就是視圖的邏輯名稱
3.當(dāng)返回對(duì)象或者集合數(shù)據(jù)時(shí),要使用Json格式字符串,可選fastJson手動(dòng)轉(zhuǎn)換,也可以使用jackson自動(dòng)轉(zhuǎn)換
小結(jié):
1.使用 String 作為請(qǐng)求處理方法的返回值類型是比較通用的方法,這樣返回的邏輯視圖名不會(huì)和請(qǐng)求 URL 綁定,具有很大的靈活性,而模型數(shù)據(jù)又可以通過 ModelMap 控制。
2.使用void,map,Model 時(shí),返回對(duì)應(yīng)的邏輯視圖名稱真實(shí)url為:prefix前綴+視圖名稱 +suffix后綴組成。
3.使用String,ModelAndView返回視圖名稱可以不受請(qǐng)求的url綁定,ModelAndView可以設(shè)置返回的視圖名稱
以上是“Spring MVC處理方法返回值的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。