RedirectAttributes 사용시 java.lang.IllegalArgumentException: Model has no value for key 오류 해결하기
페이지가 redirect 될 때 값을 함께 전달하고 싶어서 RedirectAttributes 를 사용해서 구현했는데 java.lang.IllegalArgumentException: Model has no value for key 오류가 발생했다. redirectAttributes.addFlashAttribute("getWaterMount", waterMount); "redirect:/recipe/spec/{recipeId}" 이게 문제가 되던 코드인데 redirectAttributes.addFlashAttribute("getWaterMount", waterMount); "redirect:/recipe/spec/" + waterMount.getRecipeId(); 로 변경해서 오류를 해결 했다.