对于最新的稳定版本,请使用 Spring Session 3.4.0spring-doc.cn

API 文档

Session

A 是名称值对的简化。SessionMapspring-doc.cn

典型用法可能类似于下面的清单:spring-doc.cn

class RepositoryDemo<S extends Session> {

	private SessionRepository<S> repository; (1)

	void demo() {
		S toSave = this.repository.createSession(); (2)

		(3)
		User rwinch = new User("rwinch");
		toSave.setAttribute(ATTR_USER, rwinch);

		this.repository.save(toSave); (4)

		S session = this.repository.findById(toSave.getId()); (5)

		(6)
		User user = session.getAttribute(ATTR_USER);
		assertThat(user).isEqualTo(rwinch);
	}

	// ... setter methods ...

}
1 我们创建一个具有泛型类型 的实例,该实例扩展了 .泛型类型在我们的类中定义。SessionRepositorySSession
2 我们使用 our 创建一个新的变量,并将其分配给 类型的变量。SessionSessionRepositoryS
3 我们与 .在我们的示例中,我们演示了将 a 保存到 .SessionUserSession
4 现在,我们将 .这就是为什么我们需要泛型类型 .唯一允许保存使用同一 .这允许 进行特定于 implementation 的优化(即,仅编写已更改的属性)。SessionSSessionRepositorySessionSessionRepositorySessionRepository
5 我们从 中检索 。SessionSessionRepository
6 我们从 our 获取 persisted,而无需显式转换我们的 attribute。UserSession

该 API 还提供与实例过期相关的属性。SessionSessionspring-doc.cn

典型用法可能类似于下面的清单:spring-doc.cn

class ExpiringRepositoryDemo<S extends Session> {

	private SessionRepository<S> repository; (1)

	void demo() {
		S toSave = this.repository.createSession(); (2)
		// ...
		toSave.setMaxInactiveInterval(Duration.ofSeconds(30)); (3)

		this.repository.save(toSave); (4)

		S session = this.repository.findById(toSave.getId()); (5)
		// ...
	}

	// ... setter methods ...

}
1 我们创建一个具有泛型类型 的实例,该实例扩展了 .泛型类型在我们的类中定义。SessionRepositorySSession
2 我们使用 our 创建一个新的变量,并将其分配给 类型的变量。SessionSessionRepositoryS
3 我们与 . 在我们的示例中,我们演示了如何更新 在过期之前可以处于非活动状态的时间。SessionSession
4 现在,我们将 . 这就是为什么我们需要泛型类型 . 允许仅保存使用同一 . 这允许 进行特定于 implementation 的优化(即,仅编写已更改的属性)。 上次访问时间会在保存时自动更新。SessionSSessionRepositorySessionSessionRepositorySessionRepositorySession
5 我们从 中检索 。 如果 已过期,则结果将为 null。SessionSessionRepositorySession

SessionRepository

A 负责创建、检索和持久化实例。SessionRepositorySessionspring-doc.cn

如果可能,您不应直接与 或 . 相反,开发人员应该更喜欢与 HttpSession 和 WebSocket 集成进行交互,并通过 HttpSession 和 WebSocket 集成间接进行交互。SessionRepositorySessionSessionRepositorySessionspring-doc.cn

FindByIndexNameSessionRepository

Spring Session 使用 的最基本 API 是 . 此 API 特意非常简单,因此您可以轻松地提供具有基本功能的其他实现。SessionSessionRepositoryspring-doc.cn

某些实施也可能选择实施 。 例如,Spring 的 Redis、JDBC 和 Hazelcast 支持库都实现了 .SessionRepositoryFindByIndexNameSessionRepositoryFindByIndexNameSessionRepositoryspring-doc.cn

这提供了一种方法来查找具有给定索引名称和索引值的所有会话。 作为所有提供的实现都支持的常见使用案例,您可以使用一种便捷的方法来查找特定用户的所有会话。 这是通过确保 name 为 的 session 属性填充 username 来完成的。 您有责任确保填充该属性,因为 Spring Session 不知道正在使用的身份验证机制。 以下清单中显示了如何使用此功能的示例:FindByIndexNameSessionRepositoryFindByIndexNameSessionRepositoryFindByIndexNameSessionRepository.PRINCIPAL_NAME_INDEX_NAMEspring-doc.cn

String username = "username";
this.session.setAttribute(FindByIndexNameSessionRepository.PRINCIPAL_NAME_INDEX_NAME, username);
的一些实现提供了钩子来自动索引其他 session 属性。 例如,许多实现会自动确保当前 Spring Security 用户名使用索引名称进行索引。FindByIndexNameSessionRepositoryFindByIndexNameSessionRepository.PRINCIPAL_NAME_INDEX_NAME

为会话编制索引后,您可以使用类似于以下内容的代码进行查找:spring-doc.cn

String username = "username";
Map<String, Session> sessionIdToSession = this.sessionRepository.findByPrincipalName(username);

ReactiveSessionRepository

A 负责以非阻塞和反应式方式创建、检索和持久化实例。ReactiveSessionRepositorySessionspring-doc.cn

如果可能,您不应直接与 或 . 相反,您应该更喜欢与 WebSession 集成进行交互并通过 WebSession 集成间接进行交互。ReactiveSessionRepositorySessionReactiveSessionRepositorySessionspring-doc.cn

@EnableSpringHttpSession

您可以将注释添加到类中,以将 Bean 公开为名为 . 为了使用注释,必须提供单个 bean。 以下示例显示了如何执行此操作:@EnableSpringHttpSession@ConfigurationSessionRepositoryFilterspringSessionRepositoryFilterSessionRepositoryspring-doc.cn

@EnableSpringHttpSession
@Configuration
public class SpringHttpSessionConfig {

	@Bean
	public MapSessionRepository sessionRepository() {
		return new MapSessionRepository(new ConcurrentHashMap<>());
	}

}

请注意,没有为您配置会话过期的基础设施。 这是因为 session expiration 等内容高度依赖于实现。 这意味着,如果您需要清理过期的会话,则您负责清理过期的会话。spring-doc.cn

@EnableSpringWebSession

您可以将注释添加到类中,以将 Bean 公开为名为 . 要使用 Comments,必须提供单个 Bean。 以下示例显示了如何执行此操作:@EnableSpringWebSession@ConfigurationWebSessionManagerwebSessionManagerReactiveSessionRepositoryspring-doc.cn

@Configuration(proxyBeanMethods = false)
@EnableSpringWebSession
public class SpringWebSessionConfig {

	@Bean
	public ReactiveSessionRepository reactiveSessionRepository() {
		return new ReactiveMapSessionRepository(new ConcurrentHashMap<>());
	}

}

请注意,没有为您配置会话过期的基础设施。 这是因为 session expiration 等内容高度依赖于实现。 这意味着,如果您需要清理过期的会话,则您负责清理过期的会话。spring-doc.cn

RedisSessionRepository

RedisSessionRepository是使用 Spring Data 的 . 在 Web 环境中,这通常与 结合使用。 请注意,此实现不支持发布会话事件。SessionRepositoryRedisOperationsSessionRepositoryFilterspring-doc.cn

实例化RedisSessionRepository

您可以在下面的清单中看到如何创建新实例的典型示例:spring-doc.cn

RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();

// ... configure redisTemplate ...

SessionRepository<? extends Session> repository = new RedisSessionRepository(redisTemplate);

有关如何创建 的其他信息,请参阅 Spring Data Redis Reference。RedisConnectionFactoryspring-doc.cn

@EnableRedisHttpSession

在 Web 环境中,创建新的最简单方法是使用 . 您可以在示例和指南(从这里开始)中找到完整的示例用法。 您可以使用以下属性自定义配置:RedisSessionRepository@EnableRedisHttpSessionspring-doc.cn

enableIndexingAnd事件 * enableIndexingAndEvents:是否使用 a 而不是 .默认值为 . * maxInactiveIntervalInSeconds:会话过期前的时间量(以秒为单位)。 * redisNamespace:允许为会话配置特定于应用程序的命名空间。Redis 键和频道 ID 以 的前缀 开头。 * flushMode:允许指定何时将数据写入 Redis。默认值仅在 上调用时。 值 write to Redis as soon as soon。RedisIndexedSessionRepositoryRedisSessionRepositoryfalse<redisNamespace>:saveSessionRepositoryFlushMode.IMMEDIATEspring-doc.cn

习惯RedisSerializer

您可以通过创建一个名为 的 bean 来自定义序列化,该 bean 实现 .springSessionDefaultRedisSerializerRedisSerializer<Object>spring-doc.cn

在 Redis 中查看会话

安装 redis-cli 后,您可以使用 redis-cli 检查 Redis 中的值。 例如,您可以在终端窗口中输入以下命令:spring-doc.cn

$ redis-cli
redis 127.0.0.1:6379> keys *
1) "spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021" (1)
1 此键的后缀是 Spring Session 的会话标识符。

您还可以使用 command 查看每个会话的属性。 以下示例显示了如何执行此操作:hkeysspring-doc.cn

redis 127.0.0.1:6379> hkeys spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021
1) "lastAccessedTime"
2) "creationTime"
3) "maxInactiveInterval"
4) "sessionAttr:username"
redis 127.0.0.1:6379> hget spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021 sessionAttr:username
"\xac\xed\x00\x05t\x00\x03rob"

RedisIndexedSessionRepository

RedisIndexedSessionRepository是使用 Spring Data 的 . 在 Web 环境中,这通常与 结合使用。 实现支持并通过 .SessionRepositoryRedisOperationsSessionRepositoryFilterSessionDestroyedEventSessionCreatedEventSessionMessageListenerspring-doc.cn

实例化RedisIndexedSessionRepository

您可以在下面的清单中看到如何创建新实例的典型示例:spring-doc.cn

RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();

// ... configure redisTemplate ...

SessionRepository<? extends Session> repository = new RedisIndexedSessionRepository(redisTemplate);

有关如何创建 的其他信息,请参阅 Spring Data Redis Reference。RedisConnectionFactoryspring-doc.cn

@EnableRedisHttpSession(enableIndexingAndEvents = true)

在 Web 环境中,创建新的最简单方法是使用 . 您可以在示例和指南(从这里开始)中找到完整的示例用法。 您可以使用以下属性自定义配置:RedisIndexedSessionRepository@EnableRedisHttpSession(enableIndexingAndEvents = true)spring-doc.cn

  • enableIndexingAndEvents:是否使用 a 而不是 .默认值为 .RedisIndexedSessionRepositoryRedisSessionRepositoryfalsespring-doc.cn

  • maxInactiveIntervalInSeconds:会话过期前的时间量(以秒为单位)。spring-doc.cn

  • redisNamespace:允许为会话配置特定于应用程序的命名空间。Redis 键和频道 ID 以 的前缀 开头。<redisNamespace>:spring-doc.cn

  • flushMode:允许指定何时将数据写入 Redis。默认值仅在 上调用时。 值 write to Redis as soon as soon。saveSessionRepositoryFlushMode.IMMEDIATEspring-doc.cn

习惯RedisSerializer

您可以通过创建一个名为 的 bean 来自定义序列化,该 bean 实现 .springSessionDefaultRedisSerializerRedisSerializer<Object>spring-doc.cn

RedisTaskExecutor

RedisIndexedSessionRepository订阅以使用 Redis 接收事件。 您可以通过创建名为 、 bean 或两者的 bean 来自定义这些事件的调度方式。 您可以在此处找到有关配置 Redis 任务执行程序的更多详细信息。RedisMessageListenerContainerspringSessionRedisTaskExecutorspringSessionRedisSubscriptionExecutorspring-doc.cn

存储详细信息

以下部分概述了如何为每个操作更新 Redis。 以下示例显示了创建新会话的示例:spring-doc.cn

HMSET spring:session:sessions:33fdd1b6-b496-4b33-9f7d-df96679d32fe creationTime 1404360000000 \
	maxInactiveInterval 1800 \
	lastAccessedTime 1404360000000 \
	sessionAttr:attrName someAttrValue \
	sessionAttr:attrName2 someAttrValue2
EXPIRE spring:session:sessions:33fdd1b6-b496-4b33-9f7d-df96679d32fe 2100
APPEND spring:session:sessions:expires:33fdd1b6-b496-4b33-9f7d-df96679d32fe ""
EXPIRE spring:session:sessions:expires:33fdd1b6-b496-4b33-9f7d-df96679d32fe 1800
SADD spring:session:expirations:1439245080000 expires:33fdd1b6-b496-4b33-9f7d-df96679d32fe
EXPIRE spring:session:expirations1439245080000 2100

后续部分将介绍详细信息。spring-doc.cn

保存会话

每个会话都以 . 每个会话都使用 command 进行设置和更新。 以下示例显示了每个会话的存储方式:HashHMSETspring-doc.cn

HMSET spring:session:sessions:33fdd1b6-b496-4b33-9f7d-df96679d32fe creationTime 1404360000000 \
	maxInactiveInterval 1800 \
	lastAccessedTime 1404360000000 \
	sessionAttr:attrName someAttrValue \
	sessionAttr:attrName2 someAttrValue2

在前面的示例中,以下关于会话的陈述为 true:spring-doc.cn

  • 会话 ID 为 33fdd1b6-b496-4b33-9f7d-df96679d32fe。spring-doc.cn

  • 会话是在 1404360000000 创建的(以毫秒为单位,自 1970 年 1 月 1 日格林威治标准时间午夜以来)。spring-doc.cn

  • 会话将在 1800 秒(30 分钟)后过期。spring-doc.cn

  • 上次访问会话的时间是 1404360000000(自 1970 年 1 月 1 日格林威治标准时间午夜以来的毫秒数)。spring-doc.cn

  • 会话有两个属性。 第一个是 ,值为 。 第二个 session 属性名为 ,值为 。attrNamesomeAttrValueattrName2someAttrValue2spring-doc.cn

优化的写入

管理的实例会跟踪已更改的属性,并仅更新这些属性。 这意味着,如果一个 attribute 被写入一次并多次读取,我们只需要写入该 attribute 一次。 例如,假设上一节中 lsiting 的 session 属性已更新。 保存时将运行以下命令:SessionRedisIndexedSessionRepositoryattrName2spring-doc.cn

HMSET spring:session:sessions:33fdd1b6-b496-4b33-9f7d-df96679d32fe sessionAttr:attrName2 newValue

会话过期

使用命令将过期时间与每个会话相关联,具体取决于 . 以下示例显示了一个典型的命令:EXPIRESession.getMaxInactiveInterval()EXPIREspring-doc.cn

EXPIRE spring:session:sessions:33fdd1b6-b496-4b33-9f7d-df96679d32fe 2100

请注意,设置为会话实际过期后 5 分钟的过期时间。 这是必需的,以便在会话过期时可以访问会话的值。 在会话实际过期 5 分钟后,对会话本身设置过期时间,以确保它被清理,但前提是我们执行了任何必要的处理。spring-doc.cn

该方法确保不会返回任何过期的会话。 这意味着您在使用会话之前无需检查过期时间。SessionRepository.findById(String)

Spring Session 依赖于来自 Redis 的 delete 和 expired keyspace 通知来分别触发 SessionDeletedEventSessionExpiredEvent。 或者确保清理与 关联的资源。 例如,当您使用 Spring Session 的 WebSocket 支持时,Redis expired 或 delete 事件会触发与会话关联的任何 WebSocket 连接被关闭。SessionDeletedEventSessionExpiredEventSessionspring-doc.cn

Expiration 不会直接在 session key 本身上进行跟踪,因为这意味着 session 数据将不再可用。相反,使用特殊的会话过期密钥。在前面的示例中,expires 键如下所示:spring-doc.cn

APPEND spring:session:sessions:expires:33fdd1b6-b496-4b33-9f7d-df96679d32fe ""
EXPIRE spring:session:sessions:expires:33fdd1b6-b496-4b33-9f7d-df96679d32fe 1800

当会话过期密钥被删除或过期时,密钥空间通知会触发对实际会话的查找,并触发 。SessionDestroyedEventspring-doc.cn

完全依赖 Redis 过期的一个问题是,如果尚未访问密钥,Redis 无法保证何时触发过期事件。 具体来说,Redis 用于清理过期密钥的后台任务是低优先级任务,可能不会触发密钥过期。 有关更多详细信息,请参阅 Redis 文档中的 Timing of Expired Events 部分。spring-doc.cn

为了规避不能保证过期事件发生的事实,我们可以确保每个密钥在预期过期时被访问。 这意味着,如果密钥上的 TTL 过期,Redis 会删除该密钥,并在我们尝试访问该密钥时触发过期事件。spring-doc.cn

因此,每个会话过期时间也会跟踪到最接近的分钟数。 这允许后台任务访问可能过期的会话,以确保以更具确定性的方式触发 Redis 过期事件。 以下示例显示了这些事件:spring-doc.cn

SADD spring:session:expirations:1439245080000 expires:33fdd1b6-b496-4b33-9f7d-df96679d32fe
EXPIRE spring:session:expirations1439245080000 2100

然后,后台任务使用这些映射显式请求每个密钥。 通过访问密钥而不是删除密钥,我们确保 Redis 仅在 TTL 过期时为我们删除密钥。spring-doc.cn

我们不会明确删除密钥,因为在某些情况下,可能存在争用条件,导致密钥错误地标识为已过期,而密钥未过期。 如果不使用分布式锁(这会降低我们的性能),就无法确保过期映射的一致性。 通过简单地访问密钥,我们确保只有在该密钥的 TTL 过期时才会删除该密钥。

SessionDeletedEventSessionExpiredEvent

SessionDeletedEvent和 都是 的类型。SessionExpiredEventSessionDestroyedEventspring-doc.cn

RedisIndexedSessionRepository支持在 A 被删除时触发 A 或在 A 过期时触发 A。 这对于确保正确清理与 关联的资源是必要的。SessionDeletedEventSessionSessionExpiredEventSessionSessionspring-doc.cn

例如,当与 WebSockets 集成时,它负责关闭任何活动的 WebSocket 连接。SessionDestroyedEventspring-doc.cn

触发或通过 提供,它侦听 Redis Keyspace 事件。 为此,需要启用 Generic 命令的 Redis Keyspace 事件和 Expired 事件。 以下示例显示了如何执行此操作:SessionDeletedEventSessionExpiredEventSessionMessageListenerspring-doc.cn

redis-cli config set notify-keyspace-events Egx

如果您使用 ,则管理和启用必要的 Redis Keyspace 事件是自动完成的。 但是,在安全的 Redis 环境中,config 命令被禁用。 这意味着 Spring Session 无法为您配置 Redis Keyspace 事件。 要禁用自动配置,请添加为 Bean。@EnableRedisHttpSession(enableIndexingAndEvents = true)SessionMessageListenerConfigureRedisAction.NO_OPspring-doc.cn

例如,使用 Java 配置,您可以使用以下内容:spring-doc.cn

@Bean
ConfigureRedisAction configureRedisAction() {
	return ConfigureRedisAction.NO_OP;
}

在 XML 配置中,您可以使用以下内容:spring-doc.cn

<util:constant
	static-field="org.springframework.session.data.redis.config.ConfigureRedisAction.NO_OP"/>

SessionCreatedEvent

创建会话时,将向 Redis 发送一个通道 ID 为 、 的事件 其中 是会话 ID。事件的正文是创建的会话。spring:session:channel:created:33fdd1b6-b496-4b33-9f7d-df96679d32fe33fdd1b6-b496-4b33-9f7d-df96679d32fespring-doc.cn

如果注册为 a(默认),则将 Redis 消息转换为 .MessageListenerRedisIndexedSessionRepositorySessionCreatedEventspring-doc.cn

在 Redis 中查看会话

安装 redis-cli 后,您可以使用 redis-cli 检查 Redis 中的值。 例如,您可以在终端中输入以下内容:spring-doc.cn

$ redis-cli
redis 127.0.0.1:6379> keys *
1) "spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021" (1)
2) "spring:session:expirations:1418772300000" (2)
1 此键的后缀是 Spring Session 的会话标识符。
2 此键包含应在 time 删除的所有会话 ID。1418772300000

您还可以查看每个会话的属性。 以下示例显示了如何执行此操作:spring-doc.cn

redis 127.0.0.1:6379> hkeys spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021
1) "lastAccessedTime"
2) "creationTime"
3) "maxInactiveInterval"
4) "sessionAttr:username"
redis 127.0.0.1:6379> hget spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021 sessionAttr:username
"\xac\xed\x00\x05t\x00\x03rob"

ReactiveRedisSessionRepository

ReactiveRedisSessionRepository是使用 Spring Data 的 . 在 Web 环境中,这通常与 结合使用。ReactiveSessionRepositoryReactiveRedisOperationsWebSessionStorespring-doc.cn

实例化ReactiveRedisSessionRepository

以下示例显示如何创建新实例:spring-doc.cn

// ... create and configure connectionFactory and serializationContext ...

ReactiveRedisTemplate<String, Object> redisTemplate = new ReactiveRedisTemplate<>(connectionFactory,
		serializationContext);

ReactiveSessionRepository<? extends Session> repository = new ReactiveRedisSessionRepository(redisTemplate);

有关如何创建 的其他信息,请参阅 Spring Data Redis Reference。ReactiveRedisConnectionFactoryspring-doc.cn

@EnableRedisWebSession

在 Web 环境中,创建新的最简单方法是使用 . 您可以使用以下属性自定义配置:ReactiveRedisSessionRepository@EnableRedisWebSessionspring-doc.cn

  • maxInactiveIntervalInSeconds:会话过期前的时间量(以秒为单位)spring-doc.cn

  • redisNamespace:允许为会话配置特定于应用程序的命名空间。Redis 键和通道 ID 以 q 前缀 .<redisNamespace>:spring-doc.cn

  • flushMode:允许指定何时将数据写入 Redis。默认值仅在 上调用时。 值 write to Redis as soon as soon。saveReactiveSessionRepositoryFlushMode.IMMEDIATEspring-doc.cn

优化的写入

管理的实例会跟踪已更改的属性,并仅更新这些属性。 这意味着,如果一个 attribute 被写入一次并多次读取,我们只需要写入该 attribute 一次。SessionReactiveRedisSessionRepositoryspring-doc.cn

在 Redis 中查看会话

安装 redis-cli 后,您可以使用 redis-cli 检查 Redis 中的值。 例如,您可以在终端窗口中输入以下命令:spring-doc.cn

$ redis-cli
redis 127.0.0.1:6379> keys *
1) "spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021" (1)
1 此键的后缀是 Spring Session 的会话标识符。

您还可以使用 command 查看每个会话的属性。 以下示例显示了如何执行此操作:hkeysspring-doc.cn

redis 127.0.0.1:6379> hkeys spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021
1) "lastAccessedTime"
2) "creationTime"
3) "maxInactiveInterval"
4) "sessionAttr:username"
redis 127.0.0.1:6379> hget spring:session:sessions:4fc39ce3-63b3-4e17-b1c4-5e1ed96fb021 sessionAttr:username
"\xac\xed\x00\x05t\x00\x03rob"

MapSessionRepository

允许保留在 中,键是 ID,值是 。 您可以将 implementation 与 用作测试或便利机制。 或者,您可以将其与分布式实现一起使用。例如,它可以与 Hazelcast 一起使用。MapSessionRepositorySessionMapSessionSessionConcurrentHashMapMapspring-doc.cn

实例化MapSessionRepository

以下示例显示如何创建新实例:spring-doc.cn

SessionRepository<? extends Session> repository = new MapSessionRepository(new ConcurrentHashMap<>());

使用 Spring Session 和 Hazlecast

Hazelcast 示例是一个完整的应用程序,演示了如何将 Spring Session 与 Hazelcast 一起使用。spring-doc.cn

要运行它,请使用以下命令:spring-doc.cn

	./gradlew :samples:hazelcast:tomcatRun

Hazelcast Spring Sample 是一个完整的应用程序,演示了如何将 Spring Session 与 Hazelcast 和 Spring Security 一起使用。spring-doc.cn

它包括支持触发、 、 和 的 Hazelcast 实现示例。MapListenerSessionCreatedEventSessionDeletedEventSessionExpiredEventspring-doc.cn

要运行它,请使用以下命令:spring-doc.cn

	./gradlew :samples:hazelcast-spring:tomcatRun

ReactiveMapSessionRepository

允许保留在 中,键是 ID,值是 。 您可以将 implementation 与 用作测试或便利机制。 或者,你可以将它与分布式实现一起使用,但要求提供的必须是非阻塞的。ReactiveMapSessionRepositorySessionMapSessionSessionConcurrentHashMapMapMapspring-doc.cn

JdbcIndexedSessionRepository

JdbcIndexedSessionRepository是使用 Spring 将会话存储在关系数据库中的实现。 在 Web 环境中,这通常与 结合使用。 请注意,此实现不支持发布会话事件。SessionRepositoryJdbcOperationsSessionRepositoryFilterspring-doc.cn

实例化JdbcIndexedSessionRepository

以下示例显示如何创建新实例:spring-doc.cn

JdbcTemplate jdbcTemplate = new JdbcTemplate();

// ... configure jdbcTemplate ...

TransactionTemplate transactionTemplate = new TransactionTemplate();

// ... configure transactionTemplate ...

SessionRepository<? extends Session> repository = new JdbcIndexedSessionRepository(jdbcTemplate,
		transactionTemplate);

有关如何创建和配置的更多信息,请参阅 Spring Framework Reference DocumentationJdbcTemplatePlatformTransactionManagerspring-doc.cn

@EnableJdbcHttpSession

在 Web 环境中,创建新的最简单方法是使用 . 您可以在 Samples and Guides (从这里开始) 中找到完整的示例用法您可以使用以下属性自定义配置:JdbcIndexedSessionRepository@EnableJdbcHttpSessionspring-doc.cn

  • tableName:Spring Session 用于存储会话的数据库表的名称spring-doc.cn

  • maxInactiveIntervalInSeconds:会话过期前的时间(以秒为单位)spring-doc.cn

定制LobHandler

您可以通过创建一个名为 的 bean 来自定义 BLOB 处理,该 bean implements .springSessionLobHandlerLobHandlerspring-doc.cn

定制ConversionService

您可以通过提供实例来自定义会话的默认序列化和反序列化。 在典型的 Spring 环境中工作时,会自动选取默认的 bean(名为 )并用于序列化和反序列化。 但是,您可以通过提供名为 .ConversionServiceConversionServiceconversionServiceConversionServicespringSessionConversionServicespring-doc.cn

存储详细信息

默认情况下,此实现使用 and tables 来存储会话。 请注意,您可以自定义表名称,如前所述。在这种情况下,用于存储属性的表使用提供的表名命名,该表名后缀为 。 如果需要进一步的自定义,您可以使用 setter 方法自定义存储库使用的 SQL 查询。在这种情况下,您需要手动配置 Bean。SPRING_SESSIONSPRING_SESSION_ATTRIBUTES_ATTRIBUTESset*QuerysessionRepositoryspring-doc.cn

由于各种数据库供应商之间存在差异,尤其是在存储二进制数据时,请确保使用特定于您的数据库的 SQL 脚本。 大多数主要数据库供应商的脚本都打包为 ,其中 是目标数据库类型。org/springframework/session/jdbc/schema-*.sql*spring-doc.cn

例如,对于 PostgreSQL,您可以使用以下架构脚本:spring-doc.cn

CREATE TABLE SPRING_SESSION (
	PRIMARY_ID CHAR(36) NOT NULL,
	SESSION_ID CHAR(36) NOT NULL,
	CREATION_TIME BIGINT NOT NULL,
	LAST_ACCESS_TIME BIGINT NOT NULL,
	MAX_INACTIVE_INTERVAL INT NOT NULL,
	EXPIRY_TIME BIGINT NOT NULL,
	PRINCIPAL_NAME VARCHAR(100),
	CONSTRAINT SPRING_SESSION_PK PRIMARY KEY (PRIMARY_ID)
);

CREATE UNIQUE INDEX SPRING_SESSION_IX1 ON SPRING_SESSION (SESSION_ID);
CREATE INDEX SPRING_SESSION_IX2 ON SPRING_SESSION (EXPIRY_TIME);
CREATE INDEX SPRING_SESSION_IX3 ON SPRING_SESSION (PRINCIPAL_NAME);

CREATE TABLE SPRING_SESSION_ATTRIBUTES (
	SESSION_PRIMARY_ID CHAR(36) NOT NULL,
	ATTRIBUTE_NAME VARCHAR(200) NOT NULL,
	ATTRIBUTE_BYTES BYTEA NOT NULL,
	CONSTRAINT SPRING_SESSION_ATTRIBUTES_PK PRIMARY KEY (SESSION_PRIMARY_ID, ATTRIBUTE_NAME),
	CONSTRAINT SPRING_SESSION_ATTRIBUTES_FK FOREIGN KEY (SESSION_PRIMARY_ID) REFERENCES SPRING_SESSION(PRIMARY_ID) ON DELETE CASCADE
);

对于 MySQL 数据库,您可以使用以下脚本:spring-doc.cn

CREATE TABLE SPRING_SESSION (
	PRIMARY_ID CHAR(36) NOT NULL,
	SESSION_ID CHAR(36) NOT NULL,
	CREATION_TIME BIGINT NOT NULL,
	LAST_ACCESS_TIME BIGINT NOT NULL,
	MAX_INACTIVE_INTERVAL INT NOT NULL,
	EXPIRY_TIME BIGINT NOT NULL,
	PRINCIPAL_NAME VARCHAR(100),
	CONSTRAINT SPRING_SESSION_PK PRIMARY KEY (PRIMARY_ID)
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;

CREATE UNIQUE INDEX SPRING_SESSION_IX1 ON SPRING_SESSION (SESSION_ID);
CREATE INDEX SPRING_SESSION_IX2 ON SPRING_SESSION (EXPIRY_TIME);
CREATE INDEX SPRING_SESSION_IX3 ON SPRING_SESSION (PRINCIPAL_NAME);

CREATE TABLE SPRING_SESSION_ATTRIBUTES (
	SESSION_PRIMARY_ID CHAR(36) NOT NULL,
	ATTRIBUTE_NAME VARCHAR(200) NOT NULL,
	ATTRIBUTE_BYTES BLOB NOT NULL,
	CONSTRAINT SPRING_SESSION_ATTRIBUTES_PK PRIMARY KEY (SESSION_PRIMARY_ID, ATTRIBUTE_NAME),
	CONSTRAINT SPRING_SESSION_ATTRIBUTES_FK FOREIGN KEY (SESSION_PRIMARY_ID) REFERENCES SPRING_SESSION(PRIMARY_ID) ON DELETE CASCADE
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;

事务管理

中的所有 JDBC 操作都以事务方式执行。 在执行事务时将 propagation 设置为 ,以避免由于干扰现有事务而产生意外行为(例如,在已参与只读事务的线程中运行操作)。JdbcIndexedSessionRepositoryREQUIRES_NEWsavespring-doc.cn

HazelcastIndexedSessionRepository

HazelcastIndexedSessionRepository是一种将会话存储在 Hazelcast 的分布式 . 在 Web 环境中,这通常与 结合使用。SessionRepositoryIMapSessionRepositoryFilterspring-doc.cn

实例化HazelcastIndexedSessionRepository

以下示例显示如何创建新实例:spring-doc.cn

Config config = new Config();

// ... configure Hazelcast ...

HazelcastInstance hazelcastInstance = Hazelcast.newHazelcastInstance(config);

HazelcastIndexedSessionRepository repository = new HazelcastIndexedSessionRepository(hazelcastInstance);

有关如何创建和配置 Hazelcast 实例的其他信息,请参阅 Hazelcast 文档spring-doc.cn

@EnableHazelcastHttpSession

要将 Hazelcast 用作 的后备源,可以将 Comments 添加到类中。 这样做扩展了 Comments 提供的功能,但在 Hazelcast 中为您服务。 您必须提供单个 Bean 才能使配置正常工作。 您可以在 Samples and Guides (Start Here) 中找到完整的配置示例。SessionRepository@EnableHazelcastHttpSession@Configuration@EnableSpringHttpSessionSessionRepositoryHazelcastInstancespring-doc.cn

基本自定义

您可以使用以下属性 on 来自定义配置:@EnableHazelcastHttpSessionspring-doc.cn

  • maxInactiveIntervalInSeconds:会话过期前的时间量(以秒为单位)。默认值为 1800 秒(30 分钟)spring-doc.cn

  • sessionMapName:Hazelcast 中用于存储会话数据的分布式的名称。Mapspring-doc.cn

会话事件

使用 a 响应从分布式中添加、逐出和删除的条目会导致这些事件触发 、 和 事件(分别)通过 发布。MapListenerMapSessionCreatedEventSessionExpiredEventSessionDeletedEventApplicationEventPublisherspring-doc.cn

存储详细信息

会话存储在 Hazelcast 的分布式中。 接口方法用于 和 Sessions。 此外,该方法还支持操作以及 appropriate (需要向 Hazelcast 注册)。有关此配置的更多详细信息,请参阅 Hazelcast Spring Sample。 会话的过期由 Hazelcast 的支持处理,用于设置条目进入 .空闲时间超过生存时间的条目(会话)将自动从 中删除。IMapIMapget()put()values()FindByIndexNameSessionRepository#findByIndexNameAndIndexValueValueExtractorIMapput()IMapIMapspring-doc.cn

您不需要在 Hazelcast 配置中配置任何设置,例如 或 for 。max-idle-secondstime-to-live-secondsIMapspring-doc.cn

请注意,如果使用 Hazelcast 来保留会话,则从中重新加载会话时,以下限制适用:MapStoreIMapMapStorespring-doc.cn

  • 重新加载触发器会导致重新发布EntryAddedListenerSessionCreatedEventspring-doc.cn

  • 重新加载对给定的 TTL 使用默认 TTL 会导致会话丢失其原始 TTLIMapspring-doc.cn

CookieSerializer

A 负责定义会话 cookie 的写入方式。 Spring Session 附带了一个使用 .CookieSerializerDefaultCookieSerializerspring-doc.cn

作为 Bean 公开CookieSerializer

当您使用 .CookieSerializer@EnableRedisHttpSessionspring-doc.cn

以下示例显示了如何执行此操作:spring-doc.cn

	@Bean
	public CookieSerializer cookieSerializer() {
		DefaultCookieSerializer serializer = new DefaultCookieSerializer();
		serializer.setCookieName("JSESSIONID"); (1)
		serializer.setCookiePath("/"); (2)
		serializer.setDomainNamePattern("^.+?\\.(\\w+\\.[a-z]+)$"); (3)
		return serializer;
	}
1 我们将 Cookie 的名称自定义为 。JSESSIONID
2 我们将 cookie 的路径自定义为 be(而不是上下文根的默认值)。/
3 我们将域名模式(正则表达式)自定义为 . 这允许跨域和应用程序共享会话。 如果正则表达式不匹配,则不设置域,并使用现有域。 如果正则表达式匹配,则第一个分组将用作域。 这意味着对 child.example.com 的请求会将域设置为 . 但是,对 localhost:8080/192.168.1.100:8080/ 的请求会取消设置 cookie,因此,它仍然可以在开发中工作,而无需进行任何生产更改。^.?\\.(\\w\\.[a-z]+)$example.com
您只应匹配有效的域字符,因为域名会反映在响应中。 这样做可以防止恶意用户执行 HTTP 响应拆分等攻击。

定制CookieSerializer

您可以在 .DefaultCookieSerializerspring-doc.cn

  • cookieName:要使用的 Cookie 的名称。 违约:。SESSIONspring-doc.cn

  • useSecureCookie:指定是否应使用安全 Cookie。 Default:使用 at the time of creation 的值。HttpServletRequest.isSecure()spring-doc.cn

  • cookiePath:Cookie 的路径。 Default:上下文根。spring-doc.cn

  • cookieMaxAge:指定在创建会话时要设置的 Cookie 的最长期限。 Default: ,这表示在浏览器关闭时应删除 Cookie。-1spring-doc.cn

  • jvmRoute:指定要附加到会话 ID 并包含在 Cookie 中的后缀。 用于标识要路由到哪个 JVM 以实现会话关联性。 对于某些实现(即 Redis),此选项不会提供任何性能优势。 但是,它可以帮助跟踪特定用户的日志。spring-doc.cn

  • domainName:允许指定要用于 Cookie 的特定域名。 此选项易于理解,但通常需要在开发和生产环境之间使用不同的配置。 请参阅 作为替代项。domainNamePatternspring-doc.cn

  • domainNamePattern:一种不区分大小写的模式,用于从 中提取域名。 该模式应提供用于提取 Cookie 域值的单个分组。 如果正则表达式不匹配,则不设置域,并使用现有域。 如果正则表达式匹配,则第一个分组将用作域。HttpServletRequest#getServerName()spring-doc.cn

  • sameSite:cookie 指令的值。 要禁用 cookie 指令的序列化,可以将此值设置为 。 违约:SameSiteSameSitenullLaxspring-doc.cn

您只应匹配有效的域字符,因为域名会反映在响应中。 这样做可以防止恶意用户执行 HTTP 响应拆分等攻击。

定制SessionRepository

实现自定义 SessionRepository API 应该是一个相当简单的任务。 将自定义实现与 @EnableSpringHttpSession 支持相结合,可以重用现有的 Spring Session 配置工具和基础设施。 但是,有几个方面值得仔细考虑。spring-doc.cn

在 HTTP 请求的生命周期内,通常会保留两次。 第一个 persist 操作是确保 Client 端可以访问会话 ID 后立即对 Client 端可用,并且还需要在提交 session 后写入,因为可能会对 session 进行进一步的修改。 考虑到这一点,我们通常建议 implementation 跟踪更改,以确保仅保存增量。 这在高度并发的环境中尤其重要,因为在高度并发的环境中,多个请求对同一请求进行操作,因此会导致争用条件,请求会覆盖彼此对会话属性的更改。 Spring Session 提供的所有实现都使用所描述的方法来保留会话更改,并且可以在实现 custom 时用作指导。HttpSessionSessionRepositorySessionRepositoryHttpSessionSessionRepositorySessionRepositoryspring-doc.cn

请注意,相同的建议也适用于实现自定义 ReactiveSessionRepository。 在这种情况下,您应该使用 @EnableSpringWebSessionspring-doc.cn