溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringMVC?重定向參數(shù)RedirectAttributes的示例分析

發(fā)布時(shí)間:2021-12-17 12:30:05 來源:億速云 閱讀:137 作者:小新 欄目:開發(fā)技術(shù)

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

重定向參數(shù)RedirectAttributes

SpringMVC 中常用到 redirect 來實(shí)現(xiàn)重定向。但使用場(chǎng)景各有需求,如果只是簡(jiǎn)單的頁(yè)面跳轉(zhuǎn)顯然無(wú)法滿足所有要求,比如重定向時(shí)需要在 url 中拼接參數(shù),或者返回的頁(yè)面需要傳遞 Model。

SpringMVC 用 RedirectAttributes 解決了這兩個(gè)需要。

1. addAttribute

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

請(qǐng)求 /save 后,跳轉(zhuǎn)至/index,并且會(huì)在url拼接 ?param=value1。

2. addFlashAttribute

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

請(qǐng)求 /save 后,跳轉(zhuǎn)至 /index,并且可以在 index 對(duì)應(yīng)的模版中通過表達(dá)式,比如 jsp 中 jstl 用 ${param},獲取返回值。該值其實(shí)是保存在 session 中的,并且會(huì)在下次重定向請(qǐng)求時(shí)刪除。

RedirectAttributes 中兩個(gè)方法的簡(jiǎn)單介紹就是這樣。

重定向攜帶參數(shù)問題

問題描述

A.jsp發(fā)送請(qǐng)求進(jìn)入Controller,并想重定向到B.jsp并攜帶參數(shù),發(fā)現(xiàn)攜帶的參數(shù)前臺(tái)獲取不到,然后采用以下方法即可

   @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";
    }

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

問題來源

B.jsp發(fā)送請(qǐng)求,跳轉(zhuǎn)到A.jsp,并將請(qǐng)求所產(chǎn)生的數(shù)據(jù)攜帶到A頁(yè)面。

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

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI