当前位置: 首页>>代码示例>>Java>>正文


Java InMemorySessionManager.setDefaultSessionTimeout方法代码示例

本文整理汇总了Java中io.undertow.server.session.InMemorySessionManager.setDefaultSessionTimeout方法的典型用法代码示例。如果您正苦于以下问题:Java InMemorySessionManager.setDefaultSessionTimeout方法的具体用法?Java InMemorySessionManager.setDefaultSessionTimeout怎么用?Java InMemorySessionManager.setDefaultSessionTimeout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在io.undertow.server.session.InMemorySessionManager的用法示例。


在下文中一共展示了InMemorySessionManager.setDefaultSessionTimeout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: prepareBuild

import io.undertow.server.session.InMemorySessionManager; //导入方法依赖的package包/类
@Override
public Undertow prepareBuild(Configuration configuration) throws IOException {
  validateConfiguration(configuration);
  ConfigurationHolder.getInstance().prepareConfiguration(configuration);
  ScannerResult scannerResult = identifyEligibleClasses( configuration );

  OvertownSessionManager instance = OvertownSessionManager.getInstance();
  InMemorySessionManager sessionManager = instance.getSessionManager();
  sessionManager.setDefaultSessionTimeout( configuration.getMaxSessionTime() );
  configureSessionManager(sessionManager, scannerResult.getSessionListeners());

  return Undertow.builder()
          .addHttpListener( configuration.getPort(), configuration.getHost()  )
          .setHandler( createRootHandler( configuration , scannerResult ) )
          .build();
}
 
开发者ID:EsmerilProgramming,项目名称:overtown,代码行数:17,代码来源:StartupHandlerImpl.java

示例2: makeSessionHandler

import io.undertow.server.session.InMemorySessionManager; //导入方法依赖的package包/类
@Override
protected HttpHandler makeSessionHandler(App root, OptionMap config,
		HttpHandler next) {
	InMemorySessionManager sessionManager = new InMemorySessionManager(
			"SessionManagerOfSiden", config.get(Config.MAX_SESSIONS));
	sessionManager.setDefaultSessionTimeout(config
			.get(Config.DEFAULT_SESSION_TIMEOUT_SECONDS));
	SessionCookieConfig sessionConfig = new SessionCookieConfig();
	sessionConfig.setCookieName(config.get(Config.SESSION_COOKIE_NAME));

	register(root, SessionMetrics.to(sessionManager),
			Arrays.asList("type", "Session"));

	return new SessionAttachmentHandler(next, sessionManager, sessionConfig);
}
 
开发者ID:taichi,项目名称:siden,代码行数:16,代码来源:MetricsAppBuilder.java

示例3: makeSessionHandler

import io.undertow.server.session.InMemorySessionManager; //导入方法依赖的package包/类
protected HttpHandler makeSessionHandler(App root, OptionMap config,
		HttpHandler next) {
	InMemorySessionManager sessionManager = new InMemorySessionManager(
			"SessionManagerOfSiden", config.get(Config.MAX_SESSIONS));
	sessionManager.setDefaultSessionTimeout(config
			.get(Config.DEFAULT_SESSION_TIMEOUT_SECONDS));
	SessionCookieConfig sessionConfig = new SessionCookieConfig();
	sessionConfig.setCookieName(config.get(Config.SESSION_COOKIE_NAME));
	return new SessionAttachmentHandler(next, sessionManager, sessionConfig);
}
 
开发者ID:taichi,项目名称:siden,代码行数:11,代码来源:DefaultAppBuilder.java


注:本文中的io.undertow.server.session.InMemorySessionManager.setDefaultSessionTimeout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。