Search in sources :

Example 6 with Session

use of com.networknt.session.Session in project light-session-4j by networknt.

the class HazelCastSessionSingleTest method getTestHandler.

static RoutingHandler getTestHandler() {
    return Handlers.routing().add(Methods.GET, "/get", exchange -> {
        SessionManager sessionManager = SingletonServiceFactory.getBean(SessionManager.class);
        Session session = sessionManager.getSession(exchange);
        if (session == null) {
            session = sessionManager.createSession(exchange);
            session.setAttribute(COUNT, 0);
            logger.debug("first time access create a session and count is 0 sessionId = " + session.getId());
        }
        Integer count = (Integer) session.getAttribute(COUNT);
        logger.debug("not the first time, get count from session = " + count + " sessionId = " + session.getId());
        exchange.getResponseHeaders().add(new HttpString(COUNT), count.toString());
        session.setAttribute(COUNT, ++count);
    });
}
Also used : SessionManager(com.networknt.session.SessionManager) Session(com.networknt.session.Session) HttpString(io.undertow.util.HttpString)

Example 7 with Session

use of com.networknt.session.Session in project light-session-4j by networknt.

the class JdbcSessionManager method removeSession.

@Override
public Session removeSession(HttpServerExchange serverExchange) {
    if (serverExchange != null) {
        String sessionId = sessionConfig.findSessionId(serverExchange);
        Session oldSession = serverExchange.removeAttachment(NEW_SESSION);
        removeSession(sessionId);
        return oldSession;
    }
    return null;
}
Also used : Session(com.networknt.session.Session)

Example 8 with Session

use of com.networknt.session.Session in project light-session-4j by networknt.

the class HazelcastSessionMultipleTest method getTestHandler.

static RoutingHandler getTestHandler() {
    return Handlers.routing().add(Methods.GET, "/get", exchange -> {
        SessionManager sessionManager = SingletonServiceFactory.getBean(SessionManager.class);
        Session session = sessionManager.getSession(exchange);
        if (session == null) {
            session = sessionManager.createSession(exchange);
            session.setAttribute(COUNT, 0);
            logger.debug("first time access create a session and count is 0 sessionId = " + session.getId());
        }
        Integer count = (Integer) session.getAttribute(COUNT);
        logger.debug("not the first time, get count from session = " + count + " sessionId = " + session.getId());
        exchange.getResponseHeaders().add(new HttpString(COUNT), count.toString());
        session.setAttribute(COUNT, ++count);
    });
}
Also used : SessionManager(com.networknt.session.SessionManager) Session(com.networknt.session.Session) HttpString(io.undertow.util.HttpString)

Example 9 with Session

use of com.networknt.session.Session in project light-session-4j by networknt.

the class JdbcSessionSingleTest method getTestHandler.

static RoutingHandler getTestHandler() {
    return Handlers.routing().add(Methods.GET, "/get", exchange -> {
        SessionManager sessionManager = SingletonServiceFactory.getBean(SessionManager.class);
        Session session = sessionManager.getSession(exchange);
        if (session == null) {
            session = sessionManager.createSession(exchange);
            session.setAttribute(COUNT, 0);
            logger.debug("first time access create a session and count is 0 sessionId = " + session.getId());
        }
        Integer count = (Integer) session.getAttribute(COUNT);
        logger.debug("not the first time, get count from session = " + count + " sessionId = " + session.getId());
        exchange.getResponseHeaders().add(new HttpString(COUNT), count.toString());
        session.setAttribute(COUNT, ++count);
    });
}
Also used : SessionManager(com.networknt.session.SessionManager) Session(com.networknt.session.Session) HttpString(io.undertow.util.HttpString)

Example 10 with Session

use of com.networknt.session.Session in project light-session-4j by networknt.

the class RedisSessionMultipleIT method getTestHandler.

static RoutingHandler getTestHandler() {
    return Handlers.routing().add(Methods.GET, "/get", exchange -> {
        SessionManager sessionManager = SingletonServiceFactory.getBean(SessionManager.class);
        Session session = sessionManager.getSession(exchange);
        if (session == null) {
            session = sessionManager.createSession(exchange);
            session.setAttribute(COUNT, 0);
            logger.debug("first time access create a session and count is 0 sessionId = " + session.getId());
        }
        Integer count = (Integer) session.getAttribute(COUNT);
        logger.debug("not the first time, get count from session = " + count + " sessionId = " + session.getId());
        exchange.getResponseHeaders().add(new HttpString(COUNT), count.toString());
        session.setAttribute(COUNT, ++count);
    });
}
Also used : SessionManager(com.networknt.session.SessionManager) Session(com.networknt.session.Session) HttpString(io.undertow.util.HttpString)

Aggregations

Session (com.networknt.session.Session)12 SessionManager (com.networknt.session.SessionManager)6 HttpString (io.undertow.util.HttpString)6 MapSession (com.networknt.session.MapSession)2