WEB/Spring

Session

Diabol 2020. 6. 18. 09:46
  • Session

세션 : 쿠키와 다르게 사용자의 정보가 서버에 저장

클라이언트마다 개별적으로 유지를 위해 httpSession 객체가 생성될때 세션ID가 부여되고, 쿠키 기술로 저장됨

 

목적 : 로그인 정보 유지, 인증 등

 

세션생성 : HttpServletRequest 객체의 getSession() 메소드

ex) session = req.getSession();

 

https://opentutorials.org/module/3569/21212

 

세션(Session) - JSP/서블릿 흝어 보기

세션이란? 세션은 쿠키와 다르게 사용자의 정보가 서버에 저장된다. 세션을 클라이언트마다 개별적으로 유지하기 위해 HttpSession 객체가 생성될때 요청을 보내온 클라리언트 정보, 요청시간 정��

opentutorials.org

 

 

  • sqlSession.selectOne();

하나의 객체만 return 하는 것

한개 이상이거나 NULL이면 Exception 발생

 

 

http://blog.naver.com/PostView.nhn?blogId=w_river&logNo=220325332768&parentCategoryNo=1&categoryNo=&viewDate=&isShowPopularPosts=true&from=search

 

sqlSession.selectOne (), selectList(), selectMap()

*sqlSession.selectOne ()selectOne 메서드는 오직 하나의 객체만을 리턴해야 한다는 것이다. 한개 이상...

blog.naver.com

'WEB > Spring' 카테고리의 다른 글

HttpSession (로그인)  (0) 2020.07.03
전자정부 프레임워크 설치 및 환경설정  (0) 2020.06.24
Spring MVC 회원가입/로그인  (0) 2020.06.18
[ibatis] CDATA  (0) 2020.06.17