SpringBoot1 [스프링부트(springboot)] 타임리프 리다이렉트(thymeleaf redirect) spring boot로 web을 만들 때, thymeleaf를 이용하면서 게시글 삭제 후 원래 게시글 목록 리스트로 리다이렉트 시킬 때 이전처럼 return "redirect:/userInfo"로 하면 뷰에 String으로 나타나고 리다이렉트가 제대로 되지 않았다. 한참 헤맸는데 검색하다 보니 2.x버전부터는 @RequestMapping("/userDelete/{userIdx}") public RedirectView userDelete(@PathVariable int userIdx) { webMapper.userDeleteByIdx(userIdx); return new RedirectView("/userInfo"); } 이렇게 RedirectView를 이용한다고 한다. 적용시키니 바로 잘 되었다ㅠ 그래도.. 2021. 1. 1. 이전 1 다음