此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
端点提供有关由 Spring Session 管理的应用程序的 HTTP 会话的信息。sessions
检索会话
要检索会话,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/sessions
$ curl 'http://localhost:8080/actuator/sessions?username=alice' -i -X GET
前面的示例检索用户名为 的用户的所有会话。
生成的响应类似于以下内容:alice
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 789
{
"sessions" : [ {
"id" : "8b20b7be-b5fb-4c74-b974-e3e7fe1e74ce",
"attributeNames" : [ ],
"creationTime" : "2024-10-03T17:30:37.821596545Z",
"lastAccessedTime" : "2024-10-03T19:30:25.821599250Z",
"maxInactiveInterval" : 1800,
"expired" : false
}, {
"id" : "305705a9-a5ae-4358-b860-8bf39e0b394c",
"attributeNames" : [ ],
"creationTime" : "2024-10-03T07:30:37.820752435Z",
"lastAccessedTime" : "2024-10-03T19:29:52.820757855Z",
"maxInactiveInterval" : 1800,
"expired" : false
}, {
"id" : "4db5efcc-99cb-4d05-a52c-b49acfbb7ea9",
"attributeNames" : [ ],
"creationTime" : "2024-10-03T14:30:37.821591435Z",
"lastAccessedTime" : "2024-10-03T19:30:00.821593940Z",
"maxInactiveInterval" : 1800,
"expired" : false
} ]
}
响应结构
响应包含匹配会话的详细信息。 下表描述了响应的结构:
路径 | 类型 | 描述 |
---|---|---|
|
|
给定用户名的会话。 |
|
|
会话的 ID。 |
|
|
会话中存储的属性的名称。 |
|
|
创建会话时的时间戳。 |
|
|
上次访问会话时的时间戳。 |
|
|
会话过期前允许的最长非活动时间(以秒为单位)。 |
|
|
会话是否已过期。 |
参数 | 描述 |
---|---|
|
用户的名称。 |
路径 | 类型 | 描述 |
---|---|---|
|
|
给定用户名的会话。 |
|
|
会话的 ID。 |
|
|
会话中存储的属性的名称。 |
|
|
创建会话时的时间戳。 |
|
|
上次访问会话时的时间戳。 |
|
|
会话过期前允许的最长非活动时间(以秒为单位)。 |
|
|
会话是否已过期。 |
检索单个会话
要检索单个会话,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/sessions/{id}
$ curl 'http://localhost:8080/actuator/sessions/4db5efcc-99cb-4d05-a52c-b49acfbb7ea9' -i -X GET
前面的示例使用 of 检索会话。
生成的响应类似于以下内容:id
4db5efcc-99cb-4d05-a52c-b49acfbb7ea9
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-10-03T14:30:37.821591435Z","lastAccessedTime":"2024-10-03T19:30:00.821593940Z","maxInactiveInterval":1800,"expired":false}
路径 | 类型 | 描述 |
---|---|---|
|
|
会话的 ID。 |
|
|
会话中存储的属性的名称。 |
|
|
创建会话时的时间戳。 |
|
|
上次访问会话时的时间戳。 |
|
|
会话过期前允许的最长非活动时间(以秒为单位)。 |
|
|
会话是否已过期。 |
删除会话
要删除会话,请向 发出请求,如以下基于 curl 的示例所示:DELETE
/actuator/sessions/{id}
$ curl 'http://localhost:8080/actuator/sessions/4db5efcc-99cb-4d05-a52c-b49acfbb7ea9' -i -X DELETE
前面的示例删除了具有 of 的会话。id
4db5efcc-99cb-4d05-a52c-b49acfbb7ea9