springmvc怎麼重定向,從一個controller跳到另外一個controller

第一種狀況,不帶參數跳轉:spring

方法一:使用ModelAndView session

    return new ModelAndView("redirect:/toList");app

      這樣能夠重定向到toList這個方法url

方法二:在return後直接,redirect 加上要跳轉的地址,便可以從第一個controller跳到第二個controller,以下圖代碼中方法一spa

方法三:見藍色框,只要在return後直接加想要跳到的controller的方法名便可,注意,這個方法名不是RequestMapping裏影射的路徑,是controller裏具體的方法,.net

如圖片中的3和4,走完3後,他會找到4而不是2(2是RequestMapping裏映射的路徑),這個像不像Java方法的重載,以下圖代碼中方法二code

 

第二種狀況,帶參數跳轉orm

方法一:直接在後面用?拼接如圖。對象

方法二:用RedirectAttributes,這個是發現的一個比較好用的一個類這裏用它的addAttribute方法,這個實際上重定向過去之後你看url,是它自動給你拼了你的url。blog

使用方法:attr.addAttribute("param", value);

     return "redirect:/namespace/toController";

這樣在toController這個方法中就能夠經過得到參數的方式得到這個參數,再傳遞到頁面。過去的url仍是和方式一同樣的。

方法三:帶參數不拼接url頁面也能拿到值(重點是這個)

    @RequestMapping("/save")
    public String save(@ModelAttribute("form") Bean form,RedirectAttributes attr)
                   throws Exception {


        String code =  service.save(form);
        if(code.equals("000")){
            attr.addFlashAttribute("name", form.getName());  
            attr.addFlashAttribute("success", "添加成功!");
            return "redirect:/index";
        }else{
            attr.addAttribute("projectName", form.getProjectName());  
            attr.addAttribute("enviroment", form.getEnviroment());  
            attr.addFlashAttribute("msg", "添加出錯!錯誤碼爲:"+rsp.getCode().getCode()+",錯誤爲:"+rsp.getCode().getName());
            return "redirect:/maintenance/toAddConfigCenter";
        }
    }


  @RequestMapping("/index")
  public String save(@ModelAttribute("form") Bean form,RedirectAttributes attr) throws Exception {
      return "redirect:/main/list";
  }
//頁面取值,直接用el表達式就能得到到,這裏的原理是放到session中,session在跳到頁面後立刻移除對象。因此你刷新一下後這個值就會丟掉。
//3. 最底層仍是兩種跳轉,只是spring又進行了封裝而已,因此說跳轉的方式其實有不少不少種,你本身也能夠封一個,也能夠用最原始的response來,也沒有問題。好了,//就到這兒。 其實也沒有什麼,可是知道了這個就很簡單了,以前沒搞懂,如今搞懂了,和你們分享。有問題的給我留言。
相關文章
相關標籤/搜索