쿠키 는 session 과 무슨 관계 가 있 습 니까?token 은 또 무엇 을 사용 합 니까?!

쿠키 는 무엇 입 니까?세 션 과 무슨 관계 가 있 습 니까?
쿠키 는 클 라 이언 트 컴퓨터 에 저 장 된 간단 한 텍스트 파일 로 일반적으로 웹 서버 와 상호작용 하 는 정 보 를 저장 합 니 다.예 를 들 어 사용자 정보,상품 이 카 트 에 가입 하 는 정보 등 http 은 상태 없 이 연결 되 기 때문에 세 션 session 이 있어 야 웹 서버 가 서로 다른 사용 자 를 구분 할 수 있 습 니 다.
쿠키 생 성
배경 을 직접 설정 합 니 다.하 나 는 직접 설정 입 니 다.하 나 는 request.getSession()을 호출 하거나 jsp 페이지 를 방문 하 는 설정 을 포함 합 니 다.
//     
Cookie cookie = new Cookie("test","123");
 cookie.setPath("/");
 cookie.setMaxAge(60);//1  
 cookie.setDomain("localhost");
 cookie.setHttpOnly(true);
 response.addCookie(cookie);

 //     
 StringBuffer stringBuffer = new StringBuffer();
 stringBuffer.append("test=").append(123).append(";");
 stringBuffer.append("Path=/;");
 response.setHeader("Set-Cookie",stringBuffer.toString());

호출 request.getSession()설정 포함
//Request  
 this.session = manager.createSession(sessionId);
 if (this.session != null && this.getContext() != null && this.getContext().getServletContext().getEffectiveSessionTrackingModes().contains(SessionTrackingMode.COOKIE)) {
      Cookie cookie = ApplicationSessionCookieConfig.createSessionCookie(context, this.session.getIdInternal(), this.isSecure());
      this.response.addSessionCookieInternal(cookie);
  }

//shiro   cookie  
AbstractNativeSessionManager:
public Session start(SessionContext context) {
   Session session = this.createSession(context); //  simpleSession
     this.applyGlobalSessionTimeout(session);
     this.onStart(session, context);
     this.notifyStart(session);//  
     return this.createExposedSession(session, context);
 }
 
DefaultWebSessionManager:
protected void onStart(Session session, SessionContext context) {
    super.onStart(session, context);
    if (!WebUtils.isHttp(context)) {
        log.debug("SessionContext argument is not HTTP compatible or does not have an HTTP request/response pair. No session ID cookie will be set.");
    } else {
        HttpServletRequest request = WebUtils.getHttpRequest(context);
        HttpServletResponse response = WebUtils.getHttpResponse(context);
        if (this.isSessionIdCookieEnabled()) {
            Serializable sessionId = session.getId();
            this.storeSessionId(sessionId, request, response);// sessionid   cookie
        } else {
            log.debug("Session ID cookie is disabled.  No cookie has been set for new session with id {}", session.getId());
        }

        request.removeAttribute(ShiroHttpServletRequest.REFERENCED_SESSION_ID_SOURCE);
        request.setAttribute(ShiroHttpServletRequest.REFERENCED_SESSION_IS_NEW, Boolean.TRUE);
    }
}


Token 의 생 성
사용자 수가 많아 지면 서 session 으로 사용자 정 보 를 저장 하면 서비스 에 큰 부담 을 줄 수 있 기 때문에 token 을 바탕 으로 하 는 것 은 인증 응용 프로그램 입 니 다.사용자 가 로그 인 에 성공 한 후에 백 엔 드 에서 token 을 생 성 한 다음 에 사용자 측 에 되 돌려 주 고 사용자 측 에서 이 token 정 보 를 저장 합 니 다.앞으로 요청 할 때 이 toke 매개 변 수 를 포함 시 킵 니 다.이것 은 전통 적 인 session 보다 성능 이 좋 고 분포 식 응용 에 도 좋 습 니 다.

좋은 웹페이지 즐겨찾기