【spring mvc】 页面重定向时参数的传递

本文介绍了如何在Spring MVC中使用RedirectAttributes接口进行页面跳转并传递参数的方法。包括使用addAttribute方法在URL中直接拼接参数,以及使用addFlashAttribute方法将数据暂存以便在重定向的目标页面通过EL表达式获取。

1. 使用 redirect 进行页面跳转时参数的传递

          ★ 使用的API:   RedirectAttributes , Model 的加强子接口


                  public interface RedirectAttributes extends Model



                     ★   方法 :   


                   RedirectAttribute  addFlashAttribute () ;    //直接就可以在跳转的页面用 el 表达式获取

                   RedirectAttribute  addAttribute() ;            //  会在跳转的链接尾端拼 参数


                    ★ i . e :

    //controller 中 方法
    @RequestMapping(value = "/accounts",method = RequestMethod.POST)
    public String handle(Account account, RedirectAttributes redirectAttributes){
        
        redirectAttributes.addAttribute("id",account.getId).addFlashAttribute("message", "Account created!");
        return "redirect:/accounts/{id}";

 }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值