SpringMVC 리 셋 매개 변수 구현
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 뒤 를 따른다.
그러나 이러한 페이지 는 엘 로 얻 을 수 없고 따로 처리 해 야 하기 때문에 우 리 는 url 을 맞 추 지 않 고 엘 로 인 자 를 얻 는 방법 이 있 습 니 다.마치 일반 퍼 가기 와 같 습 니 다.
RedirectAttributes 를 사용 합 니 다.하지만 이번 에는 addAttribute 방법 을 사용 하지 않 습 니 다.spring 은 새로운 방법 을 준비 해 주 었 습 니 다.addFlashAttribute().
이 방법의 원 리 는 세 션 에 넣 고 세 션 은 페이지 로 건 너 간 후 바로 대상 을 제거 하 는 것 이다.그 러 니까 새로 고침 하면 이 값 을 잃 어 버 릴 거 야.
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 에 추 가 된 데 이 터 를 가 져 온 후에 정상적으로 사용 할 수 있 습 니 다.예 코드 가 필요 하면 이 다운 로드 를 누 르 십시오http://xiazai.jb51.net/201701/yuanma/springmvcdemo_jb51.rar
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
springmvc application/octet-stream problemmistake: Source code: Solution: Summarize: application/octet-stream is the original binary stream method. If the convers...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.