码迷,mamicode.com
首页 > 编程语言 > 详细

JavaWeb基础 session getId getMaxInactiveInterval 得到sessionId、最大不活动时间

时间:2017-12-06 21:39:34      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:doc   老师   contex   sheet   esc   href   request   ide   block   

礼悟:
     好好学习合思考,尊师重道存感恩。叶见寻根三返一,江河湖海同一体。
          虚怀若谷良心主,愿行无悔给最苦。读书锻炼强身心,诚劝且行且珍惜。




       javaEE:7           
       javaSE:1.8
          JSTL:1.2.2  
      server:tomcat 8.5
    browser:Chrome/Firefox
             os:windows7 x64
            ide:MyEclipse 2017

 

index.jsp

<!-- jsp指令,一种特殊的标签 -->
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<!-- java代码片段 方法里面能写的,这里面都可以写 -->
<%
	// 获取项目名
	String path = request.getContextPath();
	// http://localhost:8081/Day11/
	String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!--  
  		向页面输出一个变量
  		有了 <base href="xxx"> 之后,再写 超链接a标签的话,a的href是基于xxx进行定位的
  		例: <a href="a.html">hi</a>  -> 访问的xxx下的a.html 
  	-->
<base href="<%=basePath%>">

<title>My JSP ‘index.jsp‘ starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->
</head>

<body>
	<%
		String id = session.getId();
		int time = session.getMaxInactiveInterval();
	%>
	<%="session的id是" + id + "<br />"%>
	<%="session的可以存在多久" + time + "秒"%>
</body>
</html>

 

 

浏览器查看

技术分享图片

 


学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。

JavaWeb基础 session getId getMaxInactiveInterval 得到sessionId、最大不活动时间

标签:doc   老师   contex   sheet   esc   href   request   ide   block   

原文地址:http://www.cnblogs.com/jizuiku/p/7994537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!