반응형

스프링 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


반응형

'java' 카테고리의 다른 글

java poi excel write 엑셀 쓰기  (0) 2018.01.29
java 전화번호 형식 변환  (7) 2018.01.23
spring security cache control  (0) 2018.01.16
spring boot cache  (0) 2018.01.16
java md5  (0) 2017.12.26
LRU LFU FIFO 알고리즘  (0) 2017.12.19
java - collections sort  (0) 2017.12.06
java domain cache off  (0) 2017.11.28

+ Recent posts