본문 바로가기

Spring Boot/controller

redirect

@GetMapping("sub6")
public String method6(){
    // redirection
    // 다른 곳(location)으로 가!!! 라는 응답(response, 302)
    return "redirect:/main16/sub5";
}
반응형