本文整理汇总了Java中javax.servlet.SessionCookieConfig.setName方法的典型用法代码示例。如果您正苦于以下问题:Java SessionCookieConfig.setName方法的具体用法?Java SessionCookieConfig.setName怎么用?Java SessionCookieConfig.setName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.servlet.SessionCookieConfig
的用法示例。
在下文中一共展示了SessionCookieConfig.setName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configureSessionCookie
import javax.servlet.SessionCookieConfig; //导入方法依赖的package包/类
private void configureSessionCookie(SessionCookieConfig config) {
Cookie cookie = this.session.getCookie();
if (cookie.getName() != null) {
config.setName(cookie.getName());
}
if (cookie.getDomain() != null) {
config.setDomain(cookie.getDomain());
}
if (cookie.getPath() != null) {
config.setPath(cookie.getPath());
}
if (cookie.getComment() != null) {
config.setComment(cookie.getComment());
}
if (cookie.getHttpOnly() != null) {
config.setHttpOnly(cookie.getHttpOnly());
}
if (cookie.getSecure() != null) {
config.setSecure(cookie.getSecure());
}
if (cookie.getMaxAge() != null) {
config.setMaxAge(cookie.getMaxAge());
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:25,代码来源:ServerProperties.java
示例2: configure
import javax.servlet.SessionCookieConfig; //导入方法依赖的package包/类
/**
* Configures the cookies 🍪
*
* @param config cookie configuration
* @param cookieName the name of the cookies
* @see SessionCookieConfig#setName(String)
* @see SessionCookieConfig#setMaxAge(int)
*/
public static void configure(SessionCookieConfig config, String cookieName) {
// Change the name of the cookie
config.setName(cookieName);
// Change the lifetime of the cookie session: it should not be greater than the lifetime of the JWT tokens
String expiration = QfsProperties.loadProperties("jwt.properties").getProperty(JwtConfig.EXPIRATION_PROPERTY);
int maxAge = null != expiration ? Integer.parseInt(expiration): JwtConfig.DEFAULT_EXPIRATION;
config.setMaxAge(maxAge);
}