다음과 같이 상대 경로로 리다이렉트 사용할 수 있음.
@Controller
public class RedirectController {
@RequestMapping("/studentConfirm")
public String studentRedirect(HttpServletRequest httpServletRequest, Model model){
String id = httpServletRequest.getParameter("id");
if(id.equals("abc")) {
return "redirect:studentOk";
}
return "redirect:studentNg";
}
절대 경로로도 리다이렉트를 사용할 수 있음.
@RequestMapping("/studentURL1")
public String studentURL1(Model model) {
return "redirect:http://localhost:8181/spring_14_3_ex1_srpingex/studentURL1.jsp";
}
반응형
'JSP & Spring' 카테고리의 다른 글
@ModelAttribute, @RequestParam (0) | 2016.09.08 |
---|---|
스프링 초기환경세팅 (0) | 2016.09.04 |
utf-8 인코딩. (0) | 2016.09.01 |
파일 업로드와 UUID (0) | 2016.07.30 |
페이징 처리하기 Pagination (0) | 2016.05.09 |