當前位置: 首頁>>代碼示例>>Java>>正文


Java ServletContext.setSessionTrackingModes方法代碼示例

本文整理匯總了Java中javax.servlet.ServletContext.setSessionTrackingModes方法的典型用法代碼示例。如果您正苦於以下問題:Java ServletContext.setSessionTrackingModes方法的具體用法?Java ServletContext.setSessionTrackingModes怎麽用?Java ServletContext.setSessionTrackingModes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.servlet.ServletContext的用法示例。


在下文中一共展示了ServletContext.setSessionTrackingModes方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: addRootContext

import javax.servlet.ServletContext; //導入方法依賴的package包/類
private void addRootContext(ServletContext container) {
  // Create the application context
  AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
  rootContext.register(SpringContextConfig.class); 
	 
  // Register application context with ContextLoaderListener
  container.addListener(new ContextLoaderListener(rootContext));
  container.addListener(new AppSessionListener());
  container.setInitParameter("contextConfigLocation", "org.packt.secured.mvc.core");
  container.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE)); // if URL, enable sessionManagement URL rewriting   
}
 
開發者ID:PacktPublishing,項目名稱:Spring-5.0-Cookbook,代碼行數:12,代碼來源:SpringWebInitializer.java

示例2: addRootContext

import javax.servlet.ServletContext; //導入方法依賴的package包/類
private void addRootContext(ServletContext container) {
  // Create the application context
  AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
  rootContext.register(SpringContextConfig.class); 
	 
  // Register application context with ContextLoaderListener
  container.addListener(new ContextLoaderListener(rootContext));
 container.setInitParameter("contextConfigLocation", "org.packt.web.reactor.security.config");
 container.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE)); // if URL, enable sessionManagement URL rewriting   
	 
}
 
開發者ID:PacktPublishing,項目名稱:Spring-5.0-Cookbook,代碼行數:12,代碼來源:SpringWebinitializer.java

示例3: onStartup

import javax.servlet.ServletContext; //導入方法依賴的package包/類
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
	servletContext.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE));
}
 
開發者ID:edylle,項目名稱:pathological-reports,代碼行數:5,代碼來源:WebConfig.java


注:本文中的javax.servlet.ServletContext.setSessionTrackingModes方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。