java

spring 301 redirect - RedirectView

고.니 2018. 1. 9. 00:29
반응형

스프링 web mvc 를 쓰면서 301 리다이렉트를 구현할 때 아래 코드를 참조하세요.


  import org.springframework.web.bind.annotation.RequestMapping;
  import org.springframework.web.bind.annotation.RequestMethod;
  import org.springframework.web.servlet.view.RedirectView;
  
  @RequestMapping(method = RequestMethod.GET, value = "/test")
  public RedirectView test() {
    redirectUrl= "http://googl.com";
    RedirectView redirectView = new RedirectView(redirectUrl);
    redirectView.setStatusCode(HttpStatus.MOVED_PERMANENTLY);
    return redirectView ;
  }
cs


반응형