public static interface SessionConfig.CookieConfig
Modifier and Type | Field and Description |
---|---|
static String |
COOKIE_DOMAIN_DEFAULT |
static Boolean |
COOKIE_HTTP_ONLY_DEFAULT |
static Integer |
COOKIE_MAX_AGE_DEFAULT |
static String |
COOKIE_NAME_DEFAULT |
static String |
COOKIE_PATH_DEFAULT |
static Boolean |
COOKIE_SECURE_DEFAULT |
Modifier and Type | Method and Description |
---|---|
String |
getDomain()
取得cookie的域名。值
null 表示根据当前请求自动设置domain。 |
int |
getMaxAge()
Cookie的最长存活时间(秒)。值
0 表示临时cookie,随浏览器的关闭而消失。 |
String |
getName()
取得cookie名称。
|
String |
getPath()
取得cookie的路径。
|
boolean |
isHttpOnly()
在cookie上设置httpOnly标记。在IE6及更新版本中,可以缓解XSS攻击的危险。
|
boolean |
isSecure()
在cookie上设置secure标记。只有https安全请求才能访问该cookie。
|
static final String COOKIE_NAME_DEFAULT
static final String COOKIE_DOMAIN_DEFAULT
static final String COOKIE_PATH_DEFAULT
static final Integer COOKIE_MAX_AGE_DEFAULT
static final Boolean COOKIE_HTTP_ONLY_DEFAULT
static final Boolean COOKIE_SECURE_DEFAULT
String getName()
String getDomain()
null
表示根据当前请求自动设置domain。String getPath()
int getMaxAge()
0
表示临时cookie,随浏览器的关闭而消失。boolean isHttpOnly()
boolean isSecure()
Copyright © 2006–2018 TinyGroup. All rights reserved.