91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringMVC?重定向參數RedirectAttributes的示例分析

發布時間:2021-12-17 12:30:05 來源:億速云 閱讀:140 作者:小新 欄目:開發技術

這篇文章主要介紹SpringMVC 重定向參數RedirectAttributes的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

重定向參數RedirectAttributes

SpringMVC 中常用到 redirect 來實現重定向。但使用場景各有需求,如果只是簡單的頁面跳轉顯然無法滿足所有要求,比如重定向時需要在 url 中拼接參數,或者返回的頁面需要傳遞 Model。

SpringMVC 用 RedirectAttributes 解決了這兩個需要。

1. addAttribute

@RequestMapping("/save")
public String save(User user, RedirectAttributes redirectAttributes) {
    redirectAttributes.addAttribute("param", "value1");
    return "redirect:/index";
}

請求 /save 后,跳轉至/index,并且會在url拼接 ?param=value1。

2. addFlashAttribute

@RequestMapping("/save")
public String save(User user, RedirectAttributes redirectAttributes) {
    redirectAttributes.addFlashAttribute("param", "value1");
    return "redirect:/index";
}

請求 /save 后,跳轉至 /index,并且可以在 index 對應的模版中通過表達式,比如 jsp 中 jstl 用 ${param},獲取返回值。該值其實是保存在 session 中的,并且會在下次重定向請求時刪除。

RedirectAttributes 中兩個方法的簡單介紹就是這樣。

重定向攜帶參數問題

問題描述

A.jsp發送請求進入Controller,并想重定向到B.jsp并攜帶參數,發現攜帶的參數前臺獲取不到,然后采用以下方法即可

   @RequestMapping("/index")
    public String delete(String id, RedirectAttributes redirectAttributes) {
           redirectAttributes.addFlashAttribute("msg","刪除成功!");
           return "redirect:hello";
    }
@RequestMapping("hello")
    public String index( @ModelAttribute("msg") String msg) {
         
          return "sentinel";
    }

首先進入delete方法,將msg放在redirectAttributes里,然后重定向到hello,通過@ModelAttribute(“msg”) String msg獲取到msg的值,那么自然sentinel頁面就能獲取到msg的值。

問題來源

B.jsp發送請求,跳轉到A.jsp,并將請求所產生的數據攜帶到A頁面。

以上是“SpringMVC 重定向參數RedirectAttributes的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通渭县| 平塘县| 得荣县| 蚌埠市| 呈贡县| 西乌珠穆沁旗| 枞阳县| 贵溪市| 石家庄市| 乐都县| 蒲城县| 商河县| 中牟县| 南宫市| 甘南县| 通州区| 潮安县| 错那县| 达尔| 登封市| 安陆市| 长治市| 东辽县| 无棣县| 綦江县| 黄冈市| 山东省| 青田县| 肇州县| 昌吉市| 玛多县| 瑞丽市| 恩施市| 阿拉善盟| 城步| 湖南省| 康保县| 茂名市| 时尚| 崇左市| 左权县|