博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java web中session简单的使用
阅读量:5781 次
发布时间:2019-06-18

本文共 1011 字,大约阅读时间需要 3 分钟。

hot3.png

1.jsp中操作session

(String)request.getSession().getAttribute("username"); // 获取request.getSession().setAttribute("username", "xxx");  // 设置

2.java中操作session

//servlet中request.getSession();session.getAttribute("username");session.setAttribute("username", "xxx");session.setMaxInactiveInterval(30*60);session.invalidate(); //struts中方法1ServletActionContext.getRequest().getSession().setAttribute("username", "xxx");ServletActionContext.getRequest().getSession().getAttribute("username");ServletActionContext.getRequest().getSession().setMaxInactiveInterval(30*60); ServletActionContext.getRequest().getSession().invalidate();//struts中方法2ActionContext.getContext().getSession().put("username", "xxx");ActionContext.getContext().getSession().get("username");ActionContext.getContext().getSession().clear();

3.web.xml中操作session

      
30
  

4.tomcat-->conf-->conf/web.xml

    
30

总结:优先级比较,java中写的要比web.xml中的高。

转载于:https://my.oschina.net/chenhao901007/blog/370109

你可能感兴趣的文章
近期待整理的资料
查看>>
Office 2013 兼容性测试(一)方法论
查看>>
emWin 2天速成实例教程004_软件定时器(Timer)和位图片动画
查看>>
const与readonly总结
查看>>
memcmp()
查看>>
软件测试学习笔记-1
查看>>
ELK安装笔记
查看>>
HTTP 缓存概念和强迫浏览器使用缓存的示例
查看>>
[flowable]DMN的bug,Tijs在6.4.2-5已经merge进去了
查看>>
LVS 介绍
查看>>
区块链矿工如何通过七个步骤挖矿并进行交易
查看>>
hadoop初遇爬坑
查看>>
2,对象与内存控制
查看>>
OC 单例模式
查看>>
Linux Shell常用技巧(八)
查看>>
H3CSE培训笔记本(IS-IS)
查看>>
php代码写一个生成桌面快捷方式
查看>>
建表时常见的几种约束
查看>>
极光v2.05版本混淆问题
查看>>
手动创建SWAP分区
查看>>