此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.4.0spring-doc.cn

会话 (sessions)

端点提供有关由 Spring Session 管理的应用程序的 HTTP 会话的信息。sessionsspring-doc.cn

检索会话

要检索会话,请向 发出请求,如以下基于 curl 的示例所示:GET/actuator/sessionsspring-doc.cn

$ curl 'http://localhost:8080/actuator/sessions?username=alice' -i -X GET

前面的示例检索用户名为 的用户的所有会话。 生成的响应类似于以下内容:alicespring-doc.cn

HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 789

{
  "sessions" : [ {
    "id" : "385ea7d6-425d-4b17-9fee-460d9e198633",
    "attributeNames" : [ ],
    "creationTime" : "2024-11-29T07:49:53.465908006Z",
    "lastAccessedTime" : "2024-11-29T09:49:41.465908858Z",
    "maxInactiveInterval" : 1800,
    "expired" : false
  }, {
    "id" : "4db5efcc-99cb-4d05-a52c-b49acfbb7ea9",
    "attributeNames" : [ ],
    "creationTime" : "2024-11-29T04:49:53.465900432Z",
    "lastAccessedTime" : "2024-11-29T09:49:16.465903728Z",
    "maxInactiveInterval" : 1800,
    "expired" : false
  }, {
    "id" : "3184f78f-f2fd-47fe-b06a-70dd371a723a",
    "attributeNames" : [ ],
    "creationTime" : "2024-11-28T21:49:53.465101951Z",
    "lastAccessedTime" : "2024-11-29T09:49:08.465108884Z",
    "maxInactiveInterval" : 1800,
    "expired" : false
  } ]
}

查询参数

终端节点使用查询参数来限制它返回的会话。 下表显示了单个必需的查询参数:spring-doc.cn

参数 描述

usernamespring-doc.cn

用户的名称。spring-doc.cn

响应结构

响应包含匹配会话的详细信息。 下表描述了响应的结构:spring-doc.cn

路径 类型 描述

sessionsspring-doc.cn

Arrayspring-doc.cn

给定用户名的会话。spring-doc.cn

sessions.[].idspring-doc.cn

Stringspring-doc.cn

会话的 ID。spring-doc.cn

sessions.[].attributeNamesspring-doc.cn

Arrayspring-doc.cn

会话中存储的属性的名称。spring-doc.cn

sessions.[].creationTimespring-doc.cn

Stringspring-doc.cn

创建会话时的时间戳。spring-doc.cn

sessions.[].lastAccessedTimespring-doc.cn

Stringspring-doc.cn

上次访问会话时的时间戳。spring-doc.cn

sessions.[].maxInactiveIntervalspring-doc.cn

Numberspring-doc.cn

会话过期前允许的最长非活动时间(以秒为单位)。spring-doc.cn

sessions.[].expiredspring-doc.cn

Booleanspring-doc.cn

会话是否已过期。spring-doc.cn

检索单个会话

要检索单个会话,请向 发出请求,如以下基于 curl 的示例所示:GET/actuator/sessions/{id}spring-doc.cn

$ curl 'http://localhost:8080/actuator/sessions/4db5efcc-99cb-4d05-a52c-b49acfbb7ea9' -i -X GET

前面的示例使用 of 检索会话。 生成的响应类似于以下内容:id4db5efcc-99cb-4d05-a52c-b49acfbb7ea9spring-doc.cn

HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 208

{"id":"4db5efcc-99cb-4d05-a52c-b49acfbb7ea9","attributeNames":[],"creationTime":"2024-11-29T04:49:53.465900432Z","lastAccessedTime":"2024-11-29T09:49:16.465903728Z","maxInactiveInterval":1800,"expired":false}

响应结构

响应包含请求的会话的详细信息。 下表描述了响应的结构:spring-doc.cn

路径 类型 描述

idspring-doc.cn

Stringspring-doc.cn

会话的 ID。spring-doc.cn

attributeNamesspring-doc.cn

Arrayspring-doc.cn

会话中存储的属性的名称。spring-doc.cn

creationTimespring-doc.cn

Stringspring-doc.cn

创建会话时的时间戳。spring-doc.cn

lastAccessedTimespring-doc.cn

Stringspring-doc.cn

上次访问会话时的时间戳。spring-doc.cn

maxInactiveIntervalspring-doc.cn

Numberspring-doc.cn

会话过期前允许的最长非活动时间(以秒为单位)。spring-doc.cn

expiredspring-doc.cn

Booleanspring-doc.cn

会话是否已过期。spring-doc.cn

删除会话

要删除会话,请向 发出请求,如以下基于 curl 的示例所示:DELETE/actuator/sessions/{id}spring-doc.cn

$ curl 'http://localhost:8080/actuator/sessions/4db5efcc-99cb-4d05-a52c-b49acfbb7ea9' -i -X DELETE

前面的示例删除了具有 of 的会话。id4db5efcc-99cb-4d05-a52c-b49acfbb7ea9spring-doc.cn