[Spring MVC] @ModelAttribute
@ModelAttribute :여러곳에 있는 단순 타입 데이터를 복합 타입 객체로 받아오거나 해당 객체를 새로 만들때 사용할수 있다. 또한 생략 가능하다. - 어디서 받아 올수있나? : URI 패스, Request param , session등등 package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframewor..