반응형
@SessionAttributes
장바구니 또는 입력을 여러 페이지를 통하여 받는 경우에는 특정 개체들에대한 정보를 계속 유지해야한다. 이 정보를 유지해주는 것이 Session이다. 그럼 Session을 사용하는 방법들에 대하여 알아보자.
HttpSessions
@GetMapping("/events/form") public String eventsForm(Model model, HttpSession httpSession) { Event newEvent = new Event(); newEvent.setLimit(50); model.addAttribute("event",newEvent); // newEvent를 "event"라는 이름으로 session에 담는다. httpSession.setAttribute("event",newEvent); return "/events/form"; }
@SessionAttributes
@Controller @SessionAttributes("event") public class SampleController { @GetMapping("/events/form") public String eventsForm(Model model) { Event newEvent = new Event(); newEvent.setLimit(50); model.addAttribute("event",newEvent); return "/events/form"; } }
@Controller 애노테이션 밑에 @SessionAttributes("event")라고 써주게되면 자동으로 "event"라는 이름으로 model이 만들어질때 session에도 바인딩이 된다.
반응형
'Web > Spring' 카테고리의 다른 글
[Spring MVC] @SessionAttribute 사용하기 ('s'가 안 붙은건 안 비밀) (0) | 2020.01.21 |
---|---|
[Spring MVC] @SessionAttributes를 사용하여 멀티 폼 서브밋 구현 (0) | 2020.01.21 |
[Spring MVC] Form을 통한 submit 할 때 에러를 띄워주기 (0) | 2020.01.16 |
[Spring MVC] @Valid와 @Validated (0) | 2020.01.16 |
[Spring MVC] @ModelAttribute 사용하기 (0) | 2020.01.16 |