Java-Chip4 / StudyingRecord

강의 내용 정리📝
6 stars 2 forks source link

Spring 컨트롤러에서 메서드에게 Model 객체를 넘겨주는 주체 #42

Closed anthologia closed 2 years ago

anthologia commented 2 years ago
@Controller
@RequestMapping("/springmvc/v3/members")
public class SpringMemberControllerV3 {
    @GetMapping
    public String list(Model model) {
        List<Member> members = memberRepository.findAll();
        model.addAttribute("members", members);

        return "members";
    }
}

Spring 컨트롤러는 @RequestMapping을 통해 URI에 알맞은 메서드를 호출해줍니다. 그런데 이때, 인자로 들어오는 Model 객체는 누가 생성해서 넣어주는 걸까요?

anthologia commented 2 years ago

https://www.inflearn.com/questions/668600

anthologia commented 2 years ago

https://github.com/Java-Chip4/StudyingRecord/issues/53 에서 자세하게 답변했다!

해리포터

😂