本文整理匯總了Java中javax.servlet.SessionCookieConfig.setSecure方法的典型用法代碼示例。如果您正苦於以下問題:Java SessionCookieConfig.setSecure方法的具體用法?Java SessionCookieConfig.setSecure怎麽用?Java SessionCookieConfig.setSecure使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.servlet.SessionCookieConfig
的用法示例。
在下文中一共展示了SessionCookieConfig.setSecure方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: setSecureCookie
import javax.servlet.SessionCookieConfig; //導入方法依賴的package包/類
@PostConstruct
public void setSecureCookie() {
SessionCookieConfig sessionCookieConfig = servletContext.getSessionCookieConfig();
// servletContext is mocked in integrationTests so it will return null.
if (sessionCookieConfig != null) {
sessionCookieConfig.setSecure(!disableSecureCookie());
}
}
示例3: configureSessionCookie
import javax.servlet.SessionCookieConfig; //導入方法依賴的package包/類
private void configureSessionCookie(ServletContext servletContext) {
SessionCookieConfig config = servletContext.getSessionCookieConfig();
config.setHttpOnly(true);
Validate.notNull(environment, "environment cannot be null!");
// set secure cookie only if current environment doesn't strictly need HTTP
config.setSecure(!environment.acceptsProfiles(PROFILE_HTTP));
//
// FIXME and CHECKME what a mess, ouch: https://issues.jboss.org/browse/WFLY-3448 ?
config.setPath(servletContext.getContextPath() + "/");
//
}
示例4: setSessionConfig
import javax.servlet.SessionCookieConfig; //導入方法依賴的package包/類
@Override
public void setSessionConfig() {
SessionManager sessionManager = webAppContext.getSessionHandler().getSessionManager();
SessionCookieConfig sessionCookieConfig = sessionManager.getSessionCookieConfig();
sessionCookieConfig.setHttpOnly(true);
sessionCookieConfig.setSecure(systemEnvironment.isSessionCookieSecure());
sessionCookieConfig.setMaxAge(systemEnvironment.sessionCookieMaxAgeInSeconds());
sessionManager.setMaxInactiveInterval(systemEnvironment.sessionTimeoutInSeconds());
}