Working log
20190321001-Spring boot Redirect 처리
까오기
2019. 3. 21. 13:23
"/"로 접근시 특정 html 페이지로 리다이렉트를 시키고 싶었습니다.
기존 소스
1 2 3 4 5 6 7 8 | @Controller public class WelcomeController { @GetMapping("/") public String index() { return new "redirect:/apidocs/index.html"; } } | cs |
예전엔 별 문제가 없었는데 spring boot 2.x에서는 에러가 납니다.
아래처러 고치니 정상 작동합니다.
1 2 3 4 5 6 7 8 | @Controller public class WelcomeController { @GetMapping("/") public RedirectView index() { return new RedirectView("/apidocs/index.html"); } } | cs |
오늘은 삽질 끝~~~