2023.02.28 / Spring

기가지니·2023년 2월 28일
1

@Autowired
@Resource
@Service, @Repository

우리 프로그램의 context root는 springweb

Session객체

HttpSession이라는 class 객체
전에는 Request.getSession() 방식으로 명시적으로 세션을 생성하거나 얻어와서 사용했어요

세션을 사용할때 좀 더 편하고자 나온 annotation
@SessionAttributes
: Session의 값을 저장하거나 찾을 수 있도록 지정해줌
세션에 데이터를 자동으로 저장해줌
@SessionAttribute(뒤에 s가 없슈)
: 우리 코드 외부에서 controller가 아닌 다른곳에서 저장해놓은 Session값을 session 객체를 사용하기 위해서

profile
지니야 코딩 해줘

0개의 댓글