Package cn.org.rapid_framework.web.session.store

Examples of cn.org.rapid_framework.web.session.store.SessionStore


//    wac.getAutowireCapableBeanFactory().autowireBeanProperties(this, AutowireCapableBeanFactory.AUTOWIRE_AUTODETECT, false);
  }

  protected SessionStore lookSessionStore() {
    WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
    SessionStore store = (SessionStore)wac.getBean("sessionStore",SessionStore.class);
    if(logger.isInfoEnabled()) {
      logger.info("Using '"+store.getClass().getSimpleName()+"' SessionStore for HttpSessionStoreFilter");
    }
    return store;
  }
View Full Code Here


//    wac.getAutowireCapableBeanFactory().autowireBeanProperties(this, AutowireCapableBeanFactory.AUTOWIRE_AUTODETECT, false);
  }

  protected SessionStore lookSessionStore() {
    WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
    SessionStore store = (SessionStore)wac.getBean("sessionStore",SessionStore.class);
    if(logger.isInfoEnabled()) {
      logger.info("Using '"+store.getClass().getSimpleName()+"' SessionStore for HttpSessionStoreFilter");
    }
    return store;
  }
View Full Code Here

TOP

Related Classes of cn.org.rapid_framework.web.session.store.SessionStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.