本文整理汇总了Java中org.apache.catalina.session.StandardSession.setValid方法的典型用法代码示例。如果您正苦于以下问题:Java StandardSession.setValid方法的具体用法?Java StandardSession.setValid怎么用?Java StandardSession.setValid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.catalina.session.StandardSession
的用法示例。
在下文中一共展示了StandardSession.setValid方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TesterRequest
import org.apache.catalina.session.StandardSession; //导入方法依赖的package包/类
public TesterRequest(boolean withSession) {
context = new TesterContext();
servletContext = new TesterServletContext();
context.setServletContext(servletContext);
if (withSession) {
Set<SessionTrackingMode> modes = new HashSet<SessionTrackingMode>();
modes.add(SessionTrackingMode.URL);
modes.add(SessionTrackingMode.COOKIE);
servletContext.setSessionTrackingModes(modes);
session = new StandardSession(null);
session.setId("1234", false);
session.setValid(true);
}
}
示例2: test
import org.apache.catalina.session.StandardSession; //导入方法依赖的package包/类
@Test
public void test() throws Exception {
MockServletContext ctx = new MockServletContext();
StandardManager manager = new StandardManager();
manager.setContext(new StandardContext());
StandardSession session = new StandardSession(manager);
session.setId("4711");
session.setValid(true);
session.setAttribute("foo", "bar");
session.setAttribute("property", new SimpleProperty("foo", "bar"));
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
session.writeObjectData(oos);
oos.flush();
oos.close();
ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
ObjectInputStream ois = Utils.getObjectInputStream(contextClassLoader, ctx, baos.toByteArray());
StandardSession newSession = new StandardSession(manager);
newSession.readObjectData(ois);
Assert.assertEquals(session.getId(), newSession.getId());
Assert.assertEquals("4711", newSession.getId());
Assert.assertEquals(session.getAttribute("foo"), newSession.getAttribute("foo"));
Assert.assertEquals("bar", newSession.getAttribute("foo"));
Assert.assertEquals(SimpleProperty.class, newSession.getAttribute("property").getClass());
Assert.assertEquals("bar", ((Property) newSession.getAttribute("property")).getString());
}
示例3: test
import org.apache.catalina.session.StandardSession; //导入方法依赖的package包/类
@Test
public void test() throws Exception {
StandardContext context = new StandardContext();
context.setName("foo");
WebappLoader loader = new WebappLoader() {
@Override
public ClassLoader getClassLoader() {
return WebappLoader.class.getClassLoader();
}
};
context.setLoader(loader);
StandardHost host = new StandardHost();
StandardEngine engine = new StandardEngine();
engine.setService(new StandardService());
host.setParent(engine);
context.setParent(host);
loader.setContext(context);
MongoPersistentManager manager = new MongoPersistentManager();
manager.setContext(context);
MongoStore store = new MongoStore();
store.setManager(manager);
store.setHosts("localhost:27017");
store.setDbName("mongo_session_test");
store.setCollectionName("mongo_session_test");
manager.setStore(store);
store.start();
StandardSession session = new StandardSession(manager);
session.setId("4711");
session.setNew(true);
session.setValid(true);
session.setCreationTime(System.currentTimeMillis());
session.setAttribute("foo", "test");
store.save(session);
StandardSession loaded = store.load(session.getId());
Assert.assertEquals(session.getAttribute("foo"), loaded.getAttribute("foo"));
Assert.assertEquals(1, store.getSize());
Assert.assertArrayEquals(new String[] { "4711" }, store.keys());
}