Class RedisHttpSessionConfiguration
java.lang.Object
org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanClassLoaderAware,org.springframework.context.annotation.ImportAware,org.springframework.context.ApplicationContextAware,org.springframework.context.EmbeddedValueResolverAware
@Configuration(proxyBeanMethods=false)
public class RedisHttpSessionConfiguration
extends SpringHttpSessionConfiguration
implements org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.EmbeddedValueResolverAware, org.springframework.context.annotation.ImportAware
Exposes the
SessionRepositoryFilter as a bean named
springSessionRepositoryFilter. In order to use this a single
RedisConnectionFactory must be exposed as a Bean.- Since:
- 1.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.beans.factory.InitializingBeanvoidsetApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher applicationEventPublisher) voidsetBeanClassLoader(ClassLoader classLoader) voidsetCleanupCron(String cleanupCron) voidsetConfigureRedisAction(ConfigureRedisAction configureRedisAction) Sets the action to perform for configuring Redis.voidsetDefaultRedisSerializer(org.springframework.data.redis.serializer.RedisSerializer<Object> defaultRedisSerializer) voidsetEmbeddedValueResolver(org.springframework.util.StringValueResolver resolver) voidsetFlushMode(FlushMode flushMode) voidsetImportMetadata(org.springframework.core.type.AnnotationMetadata importMetadata) voidsetIndexResolver(IndexResolver<Session> indexResolver) voidsetMaxInactiveIntervalInSeconds(int maxInactiveIntervalInSeconds) voidsetRedisConnectionFactory(org.springframework.beans.factory.ObjectProvider<org.springframework.data.redis.connection.RedisConnectionFactory> springSessionRedisConnectionFactory, org.springframework.beans.factory.ObjectProvider<org.springframework.data.redis.connection.RedisConnectionFactory> redisConnectionFactory) voidsetRedisFlushMode(RedisFlushMode redisFlushMode) Deprecated.voidsetRedisNamespace(String namespace) voidsetRedisSubscriptionExecutor(Executor redisSubscriptionExecutor) voidsetRedisTaskExecutor(Executor redisTaskExecutor) voidsetSaveMode(SaveMode saveMode) voidsetSessionRepositoryCustomizer(org.springframework.beans.factory.ObjectProvider<SessionRepositoryCustomizer<RedisIndexedSessionRepository>> sessionRepositoryCustomizers) org.springframework.data.redis.listener.RedisMessageListenerContainerspringSessionRedisMessageListenerContainer(RedisIndexedSessionRepository sessionRepository) Methods inherited from class org.springframework.session.config.annotation.web.http.SpringHttpSessionConfiguration
init, sessionEventHttpSessionListenerAdapter, setApplicationContext, setCookieSerializer, setHttpSessionIdResolver, setHttpSessionListeners, setServletContext, springSessionRepositoryFilter
-
Constructor Details
-
RedisHttpSessionConfiguration
public RedisHttpSessionConfiguration()
-
-
Method Details
-
sessionRepository
-
springSessionRedisMessageListenerContainer
@Bean public org.springframework.data.redis.listener.RedisMessageListenerContainer springSessionRedisMessageListenerContainer(RedisIndexedSessionRepository sessionRepository) -
enableRedisKeyspaceNotificationsInitializer
@Bean public org.springframework.beans.factory.InitializingBean enableRedisKeyspaceNotificationsInitializer() -
setMaxInactiveIntervalInSeconds
public void setMaxInactiveIntervalInSeconds(int maxInactiveIntervalInSeconds) -
setRedisNamespace
-
setRedisFlushMode
Deprecated. -
setFlushMode
-
setSaveMode
-
setCleanupCron
-
setConfigureRedisAction
@Autowired(required=false) public void setConfigureRedisAction(ConfigureRedisAction configureRedisAction) Sets the action to perform for configuring Redis.- Parameters:
configureRedisAction- the configureRedis to set. The default isConfigureNotifyKeyspaceEventsAction.
-
setRedisConnectionFactory
@Autowired public void setRedisConnectionFactory(@SpringSessionRedisConnectionFactory org.springframework.beans.factory.ObjectProvider<org.springframework.data.redis.connection.RedisConnectionFactory> springSessionRedisConnectionFactory, org.springframework.beans.factory.ObjectProvider<org.springframework.data.redis.connection.RedisConnectionFactory> redisConnectionFactory) -
setDefaultRedisSerializer
@Autowired(required=false) @Qualifier("springSessionDefaultRedisSerializer") public void setDefaultRedisSerializer(org.springframework.data.redis.serializer.RedisSerializer<Object> defaultRedisSerializer) -
setApplicationEventPublisher
@Autowired public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher applicationEventPublisher) -
setIndexResolver
-
setRedisTaskExecutor
@Autowired(required=false) @Qualifier("springSessionRedisTaskExecutor") public void setRedisTaskExecutor(Executor redisTaskExecutor) -
setRedisSubscriptionExecutor
@Autowired(required=false) @Qualifier("springSessionRedisSubscriptionExecutor") public void setRedisSubscriptionExecutor(Executor redisSubscriptionExecutor) -
setSessionRepositoryCustomizer
@Autowired(required=false) public void setSessionRepositoryCustomizer(org.springframework.beans.factory.ObjectProvider<SessionRepositoryCustomizer<RedisIndexedSessionRepository>> sessionRepositoryCustomizers) -
setBeanClassLoader
- Specified by:
setBeanClassLoaderin interfaceorg.springframework.beans.factory.BeanClassLoaderAware
-
setEmbeddedValueResolver
public void setEmbeddedValueResolver(org.springframework.util.StringValueResolver resolver) - Specified by:
setEmbeddedValueResolverin interfaceorg.springframework.context.EmbeddedValueResolverAware
-
setImportMetadata
public void setImportMetadata(org.springframework.core.type.AnnotationMetadata importMetadata) - Specified by:
setImportMetadatain interfaceorg.springframework.context.annotation.ImportAware
-