공부
[Spring] redirect URL
승가비
2020. 5. 2. 18:08
728x90
@Controller
public class ExampleController {
@GetMapping("/")
public String test() {
return "redirect:http://www.naver.com";
}
}
http://jmlim.github.io/spring/2019/09/30/spring-redirect-to-an-external-url/
[Spring] Spring Controller 에서 외부 URL로 redirect 하기. · 기억하기 위한 개발노트
[Spring] Spring Controller 에서 외부 URL로 redirect 하기. 30 Sep 2019 | Spring Spring boot Redirect External 외부 URL Java Spring 웹 어플리케이션 내의 페이지가 아닌 외부 URL로 redirect 하고 싶을 경우 아래와 같이 다양한 방법으로 redirect 가 가능하다. import org.springframework.http.HttpHeaders; import org.
jmlim.github.io
728x90