springmvc重新導向請求

來源:互聯網
上載者:User

標籤:web   ack   int   BMI   params   mod   重複   oct   fun   

SpringMVC重新導向傳參數的實現(來自網友)

 

 

在spring的一個controller中要把參數傳到頁面,只要配置視圖解析器,把參數添加到Model中,在頁面用el運算式就可以取到。但是,這樣使用的是forward方式,瀏覽器的地址欄是不變的,如果這時候瀏覽器F5重新整理,就會造成表單重複提交的情況。所以,我們可以使用重新導向的方式,改變瀏覽器的地址欄,防止表單因為重新整理重複提交。

jsp檔案:

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>login</title></head><body><form id="form1" action="/demo/user/login" method="post">帳號:<input type="text" name="name" /></br>密碼:<input type="password" name="password" /></br><input type="submit" value="submit"/></form></body></html>

controller:

package com.demo.controller;import java.util.Map;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;/** * @author lpj * @date 2016年7月10日 */@Controller@RequestMapping("/user")public class DemoController {@RequestMapping("/login")public String login(@RequestParam Map<String, String> user, Model model) {System.out.println("使用者提交了一次表單");String username;if (user.get("name").isEmpty()) {username = "Tom";} else {username = user.get("name");}model.addAttribute("msg", username);//  return "home";//此方式跳轉,頁面重新整理會重複提交表單return "redirect:/home.jsp";}}

由於重新導向相當於2次請求,所以無法把參數加在model中傳過去。在上面例子中,頁面擷取不到msg參數。要想擷取參數,可以手動拼url,把參數帶在後面。 Spring 3.1 提供了一個很好用的類:RedirectAttributes。 使用這個類,我們可以把參數隨著重新導向傳到頁面,不需自己拼url了。 把上面方法參數中的Model換成RedirectAttributes,參數就自動跟在url後了。

 

但是,這樣頁面不能用el擷取到,還要另外處理,所以,我們還有一種方式,不拼url,用el擷取參數,就像普通轉寄一樣。 還是使用RedirectAttributes,但是這次不用addAttribute方法,spring為我們準備了新方法,addFlashAttribute()。 這個方法原理是放到session中,session在跳到頁面後馬上移除對象。所以你重新整理一下後這個值就會丟失。 controller代碼改為如下:

package com.demo.controller;import java.util.Map;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.ModelAttribute;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.servlet.mvc.support.RedirectAttributes;/** * @author lpj * @date 2016年7月10日 */@Controller@RequestMapping("/user")public class DemoController {@RequestMapping("/login")//public String login(@RequestParam Map<String, String> user, Model model) {public String login(@RequestParam Map<String, String> user, RedirectAttributes model) {System.out.println("使用者提交了一次表單");String username;if (user.get("name").isEmpty()) {username = "Tom";} else {username = user.get("name");}model.addFlashAttribute("msg", username);//return "home";//此方式跳轉,頁面重新整理會重複提交表單return "redirect:/user/toHome";}@RequestMapping("/toHome")public String home(@ModelAttribute("msg") String msg, Model model) {System.out.println("拿到重新導向得到的參數msg:" + msg);model.addAttribute("msg", msg);return "home";}}

這邊我們使用@ModelAttribute註解,擷取之前addFlashAttribute添加的資料,之後就可以正常使用啦。

springmvc重新導向請求

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.