// 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;
}