자바 웹 전송 요청 및 방향 변경 상세 설명

전송 요청:같은 controller 에서 다른 요청 맵 으로 전송 을 요청 합 니 다.요청 주 소 는 변경 되 지 않 습 니 다.

 //    
  @RequestMapping("/testFoeward")
  //@ResponseBody
  public String testforWard1() {
  	System.out.println("testforWard1   ");
  	return"forward:/test";//	     /test
  	
  }
  @RequestMapping("/test")
  public String testforWard2() {
  	System.out.println("testforward2   ");
  	return"hello";//   hello.jsp
  	
  }

재 설정:요청 을 다른 controller 로 재 설정 합 니 다.

  //   
	/*
	 * (1)     controller           controller  
	 * [return " redirect:/    "]
	 *            
	 */
  @RequestMapping("/testRedirect")
  public String testredirect1() {
  	System.out.println("testRedirect   ");
  	return "redirect:http://localhost:8080/day_22/test";
      //return "redirect:http://www.baidu.com";      
  }

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기