本文整理匯總了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
}
示例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
}
示例3: onStartup
import javax.servlet.ServletContext; //導入方法依賴的package包/類
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
servletContext.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE));
}