您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了SpringMVC如何實現跨重定向請求傳遞數據,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
執行完post請求后,通常來講一個最佳實踐就是執行重定向。重定向將丟棄原始請求數據,原始請求中的模型數據和請求都會消亡。可以有效避免用戶瀏覽器刷新或者后退等操作,直接間接地重復執行已經完成的post請求。
在控制方法中返回的視圖名稱中,在String前使用"redirect:"前綴,那么這個String就不是來查找視圖的,而是瀏覽器進行重定向的路徑,相當于重新發出請求。
重定向通常相當于從一個controller到另一個controller。
(1)使用URL模板以路徑變量和查詢參數的形式傳遞數據(一些簡單的數據)
@GetMapping("/home/index") public String index(Model model){ Meinv meinv = new Meinv("gaoxing",22); model.addAttribute("lastName",meinv.getLastName()); model.addAttribute("age",meinv.getAge()); return "redirect:/home/details/{lastName}"; } @GetMapping("/home/details/{lastName}") public String details(@PathVariable String lastName, @RequestParam Integer age){ System.out.println(lastName); System.out.println(age); return "home"; }
(2)通過flash屬性發送數據(對象等復雜數據)
@GetMapping("/home/index") public String index(RedirectAttributes model){ Meinv meinv = new Meinv("gaoxing",22); model.addAttribute("lastName",meinv.getLastName()); model.addFlashAttribute("meinv",meinv); return "redirect:/home/details/{lastName}"; } @GetMapping("/home/details/{lastName}") public String details(@PathVariable String lastName, Model model){ Meinv meinv = null; if(model.containsAttribute("meinv")){ meinv = (Meinv) model.asMap().get("meinv"); } System.out.println(meinv); return "home"; }
以上就是關于SpringMVC如何實現跨重定向請求傳遞數據的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。