博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaEE中对Session操作
阅读量:5223 次
发布时间:2019-06-14

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

jsp中:

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

Java中:

1 //servlet中 2 request.getSession(); 3 session.getAttribute("username"); 4 session.setAttribute("username", "xxx"); 5 session.setMaxInactiveInterval(30*60); 6 session.invalidate(); 7    8 //struts中方法1 9 ServletActionContext.getRequest().getSession().setAttribute("username", "xxx");10 ServletActionContext.getRequest().getSession().getAttribute("username");11 ServletActionContext.getRequest().getSession().setMaxInactiveInterval(30*60); 12 ServletActionContext.getRequest().getSession().invalidate();13  14 //struts中方法215 ActionContext.getContext().getSession().put("username", "xxx");16 ActionContext.getContext().getSession().get("username");17 ActionContext.getContext().getSession().clear();

web.xml中:

1 
2
30
3

tomcat-->conf-->conf/web.xml中:

1 
2
30
3

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

转载于:https://www.cnblogs.com/chenhao1990/p/4628942.html

你可能感兴趣的文章
javascript事件捕获与冒泡
查看>>
几种重要的网络演化模型
查看>>
跟我一起写 Makefile——1.1 概述
查看>>
越人歌
查看>>
软件测试——性能测试总结
查看>>
PycharmV2017 1.x使用说明手册
查看>>
HYPERSPECTRAL IMAGE CLASSIFICATION USING TWOCHANNEL DEEP CONVOLUTIONAL NEURAL NETWORK阅读笔记
查看>>
Freemarker 中的哈希表(Map)和序列(List)
查看>>
ECMAScript学习笔记
查看>>
Ubuntu 16.04安装Synaptic Package Manager图形化APT管理工具
查看>>
找回Reshaprer的Alt+Enter快捷键的方法
查看>>
Spring基于注解的配置概述
查看>>
POJ 2513 Colored Sticks 解题报告
查看>>
R语言内存管理
查看>>
【hive】函数大全
查看>>
tcp 3次握手四次挥手
查看>>
vnc远程运行3D游戏
查看>>
Linux/Windows远程桌面
查看>>
我对IoC/DI的理解
查看>>
Struts2数据传输的背后机制:ValueStack(值栈)
查看>>