我们在jsp中会操作一些表单的值。或者获得用户的值操作,那么我们就可以使用jsp的作用域操作,1.page、request、session、application这四个作用域,其中最常用的便是request和session的域操作。
使用session域操作,因为使用的web容器是Tomcat服务器,而session只要不关闭浏览器,它就会一直存在不会消失,还是就是时间的默认限制30分钟,那么接下来便是在jsp中使用session,
1
2
3
4
5
6
7
8
9
10
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> < html > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" > < title >Insert title here</ title > </ head > < body > < form method = POST action = "Session.jsp" > |
请输入用户名:
1
2
3
4
5
6
7
8
9
10
11
|
<input type=text name= "name" > <input type=submit value= "提交信息" > </form> <!-- session设置值 --> <% String name = request.getParameter( "name" ); session.setAttribute( "name" , name); String names = (String) session.getAttribute( "name" ); %> |
1
2
3
|
您的用户名是:<%=names%> </ body > </ html > |
这时候这个name的值你就拿到了,便可以操作这个session回话了
JSTL标签获取Session:
session.setAttribute("age","123");
${ sessionScope.age}
在页面上显示的就是123了
sessionScope指的是session的范围,类似还有requestScope,pageScope,contextScope
然后后面的age表示的是set属性时的key值
Jsp中获取Session:
session是jsp的内置对象,所以你可以直接写在jsp的
1
2
3
4
|
< % session.setAttribute( "a" , b); //把b放到session里,命名为a, String M = session.getAttribute(“a”).toString(); //从session里把a拿出来,并赋值给M % > |
总结
以上就是本文关于jsp中存取session值简单介绍的全部内容,希望对大家有所帮助。如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
原文链接:http://blog.csdn.net/ht121907/article/details/54428712