1. out :
- 输出对象,向客户端输出内容。
2. pageContext :
- JSP页面容器
3. request :
- 请求对象;存储"客户端向服务端发送的请求信息"
- request 常见方法:
- String getParameter (String name) : 根据请求的字段名key , 返回字段值 value;
- String [ ] getParameterValues (String name) : 根据请求的字段名key , 返回多个字段值 value (checkbox);
- void setCharacterEncoding(“编码格式utf-8”) :设置请求编码 (tomcat 7 以前默认是 iso-8859-1 , tomcat 8 以后改为了 utf-8)
- getRequestDispatcher( ) .foeward(request,response) : 请求转发 的方式跳转页面 : A -> B
- getServerContext( ) : 获取项目的ServletContext 对象 , 返回值为ServletContext 对象。
// 文件名: register.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="show.jsp" method="get">
用户名:<input type="text" name="uname"/><br/>
密码:<input type="password" name="upwd"/><br/>
年龄:<input type="text" name="uage"/><br/>
爱好<br/>:
<input type="checkbox" name="uhobbies" value="足球"/>足球、
<input type="checkbox" name="uhobbies" value="篮球"/>篮球、
<input type="checkbox" name="uhobbies" value="乒乓球"/>乒乓球、<br>
<input type="submit" value="注册">
</form>
</body>
</html>
// 文件名: show.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
// 设置编码
request.setCharacterEncoding("utf-8");
// 获取值
String name = request.getParameter("uname");
int age = Integer.parseInt(request.getParameter("uage"));
String pwd = request.getParameter("upwd");
String[]hobbies = request.getParameterValues("uhobbies");
%>
// 显示值
注册成功,信息如下:<br/>
姓名:<%= name %><br/>
年龄:<%= age %><br/>
密码:<%= pwd %><br/>
爱好: <br/>
<%
if(hobbies != null )
for(String hobby : hobbies)
out.print(hobby+"   ");
%>
</body>
</html>
get 提交方式: method=“get” 和 地址栏 、 超链接 (< a href=“xx”> )请求方式 默认都属于 get 提交方式。
get 与 post 提交方式的区别:
- get方式 在地址栏显示 请求信息(地址栏能够容纳的信息有限, 4-5 KB ,如果请求数据存在大文件,会产生容纳不全出错),post 不会显示
- 文件上传操作, 必须是post
4. response :
- 响应对象
- 提供的方法:
- void addCookie( Cookie cookie ) ; 服务端向客户端增加cookie对象
- void sendRedirect(“a.jsp”) throws IOException ; 页面跳转的一种方式(重定向)
- void setContetType(String type) : 设置服务端响应编码(设置服务端的contentType对象)
// 文件名: login.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="check.jsp" method="post">
用户名:<input type = "text" name="uname"><br/>
密码:<input type="password" name="upwd"><br/>
<input type="submit" name="登录"><br/>
</form>
</body>
</html>
// 文件名 check.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
request.setCharacterEncoding("utf-8");
String name = request.getParameter("uname");
String pwd = request.getParameter("upwd");
if(name.equals("张三") && pwd.equals("abc")){ // 假设 张三 abc
//response.sendRedirect("success.jsp"); // 页面跳转: 重定向 可能会导致数据丢失
// 页面跳转,请求转发,可以获取数据,并且地址栏没有改变
request.getRequestDispatcher("success.jsp").forward(request,response);
}else{
//登录失败
out.print("用户名或密码有误!");
}
%>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
登录成功!<br/>
欢迎您:
<%
String name = request.getParameter("uname");
out.print(name);
%>
</body>
</html>
请求转发 | 重定向 | |
---|---|---|
地址栏是否改变 | 不变 | 改变 |
跳转发生的位置 | 服务端 | 客户端发出的第二次请求 |
是否保留第一次请求时的数据 | 保留 | 不保留 |
请求的次数 | 1次 | 2次 |
请求转发: 张三(客户端) --> 【服务窗口A (服务端)–> 服务窗口B 】
重定向: 张三(客户端) --> 服务窗口A (服务端)–> 返回给张三: 去B窗口
张三(客户端) --> 服务窗口B (服务端) --> 结束
5. session :
session (存在于服务端)
Cookie (客户端,不是内置对象(new ) ) : Cookie是由服务端生成的,再发送给客户端保存。 相当于 本地缓存的作用: 客户端 --> 服务端
作用: 提高访问服务端的效率,但安全性差。
cookie : key = value
javax.servlet.http.Cookie
public Cookie(String name , String value)
String getName() : 获取name
String getValue() :获取value
void setMaxAge(int expiry); 最大有效期(秒)
服务器发送给客户端:
reaponse.addCookie(Cookie cookie)
页面跳转(转发,重定向)
客户端获取 cookie : request.getCookies(Cookie cookie);
a. 服务端增加cookie : response对象; 客户端获取对象: request对象
b. 不能直接获取某一个单独对象,只能一次性将全部的cookie拿到
通过F12可以发现 除了自己设置的额Cookie独享外, 还有一个name 为JSESSIONID的cookie
// 文件名: response_addCookie.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
// 服务端
Cookie cookie1 = new Cookie("name","张三");
Cookie cookie2 = new Cookie("pwd","abc");
response.addCookie(cookie1);
response.addCookie(cookie2);
// 页面跳转到客户端(转发 重定向)
response.sendRedirect("result.jsp");
%>
</body>
</html>
// 文件名称: result.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
// 客户端
Cookie[] cookies = request.getCookies();
for(Cookie cookie : cookies){
out.print(cookie.getName()+"--"+cookie.getValue()+"<br/>");
}
%>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%!
String uname ;
%>
<%
boolean flag = false;
Cookie[] cookies = request.getCookies();
for(Cookie cookie : cookies){
if(cookie.getName().equals("uname")){
uname = cookie.getValue();
flag = true;
}
}
if(!flag){
out.println("cookie已失效");
}else{
out.println("cookie:"+uname);
}
%>
<form action="check.jsp" method="post">
用户名:<input type = "text" name="uname" value="<%= uname==null?"":uname %>"><br/>
密码:<input type="password" name="upwd"><br/>
<input type="submit" name="登录"><br/>
</form>
</body>
</html>
// 文件名 check.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
request.setCharacterEncoding("utf-8");
String name = request.getParameter("uname");
String pwd = request.getParameter("upwd");
// 将用户名 加入到Cookie中
// 建议Cookie 只保存 英文数字,负责需要进行编码解码
Cookie cookie = new Cookie("uname",name);
// 设置页面最大有效期时间, 当前页面无操作10秒后 页面失效
cookie.setMaxAge(10);
response.addCookie(cookie);
response.sendRedirect("result.jsp");
%>
</body>
</html>
session : 会话
a. 浏览网站 : 开始 --> 关闭
b. 购物 : 浏览 --> 付款 --> 退出
c. 电子邮件: 浏览 --> 写邮件 --> 退出
d. xxx 开始 --> xxx 结束
Session机制:
- 客户端第一次请求服务端时,(匹配失败)服务端会产生一个 session 对象(用于保存该客户的信息);
- 并且每个session对象 都会有一个唯一的sessionId( 用于区分其他session ) ;
- 服务端又会 产生一个cookie , 并且该cookie的key=JSESSIONID 和 values = 服务端sessionId的值;
- 然后 服务端会在相应客户端的同时,将该cookie发送给客户端,至此 客户端就有了一个 cookie(JSESSIONID);
- 因此客户端的cookie 就可以和服务端的session 一 一对应(JSESSIONID - sessionID)
- 客户端第二/n 次请求服务器时: 服务器会先用客户端cookie中的JSESSIONID 去服务器的session中匹配sessionid,如果匹配成功(cookie jsessionid 和 sessionid),说明此用户不是第一次访问;无需登录。
- 总结
- session存储在服务端
- sesison是在 同一个用户(客户)请求时 共享。
- 实现机制: 第一次客户请求时 产生一个sessionid 并复制给cookie的jsessionid 然后发给客户端。最终通过session的sessionid和cookie的jsessionid 实现一 一对应的关系。
session方法:
- Stirng getId( ) : 获取sessionId
- boolean isNew9) : 判断是否是 新用户 (第一次访问)
- void invalidate() : 是session失效 (退出登录、注销)
- setAttribute() :
- getAttribute() :
- void setMaxInactiveInterval(秒) : 设置最大有效非活动时间
- void getMaxInactiveInterval(秒) : 获取最大有效非活动时间
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="check.jsp" method="post">
用户名:<input type = "text" name="uname"><br/>
密码:<input type="password" name="upwd"><br/>
<input type="submit" name="登录"><br/>
</form>
</body>
</html>
// 文件名 check.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
request.setCharacterEncoding("utf-8");
String name = request.getParameter("uname");
String pwd = request.getParameter("upwd");
if(name.equals("张三") && pwd.equals("abc")){ // 假设 张三 abc
//response.sendRedirect("success.jsp"); // 页面跳转: 重定向 会导致数据丢失
// 页面跳转,请求转发
//request.getRequestDispatcher("success.jsp").forward(request,response);
// 只有登录成功,session中才会存在 uname / upwd
session.setAttribute("uname", name);
session.setAttribute("upwd", pwd);
session.setMaxInactiveInterval(10);
request.getRequestDispatcher("welcom.jsp").forward(request,response);
}else{
//登录失败
response.sendRedirect("login.jsp");
//out.print("用户名或密码有误!");
}
%>
</body>
</html>
// welcome.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
欢迎您:
<%
Object name = session.getAttribute("uname");
// 如果用户没有登录,而是直接的通过地址来访问welcome.jsp,则必然获取到的name是null
// 如果没有登录,应该跳回登录页
if(name!=null){
out.print(name);
%>
<a href="invalidate.jsp">注销</a>
<%
}else{
response.sendRedirect("login.jsp");
}
%>
</body>
</html>
session | cookie | |
---|---|---|
保存的位置 | 服务端 | 客户端 |
安全性 | 较安全 | 较不安全 |
保存的内容 | Object | String |
6. application :
全局对象
String getContextPath() : 虚拟路径
String getRealPath() : 绝对路径 (虚拟路径相对的绝对路径)
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" import = "java.util.Date"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%= "当前项目的虚拟路径:"+ application.getContextPath() %>
<br><br>
<%= "当前项目的绝对路径:"+ application.getRealPath("/MyJspProject1") %>
<br><br>
</body>
</html>
7. config :
- 配置对象(服务器配置信息)
8. page :
- 当前JSP页面对象(相当于java中的this)
9. exception :
- 异常对象
四种范围对象:(小 -> 大)
pageContext
JSP页面容器 (page 对象) ; 当前页面有效,页面跳转后失效
request
请求对象 ; 同一次请求有效 , (请求转发后有效,重定向无效)
session
会话对象 ; 同一次会话有效 , (无论怎么跳转都有效,关闭/切换浏览器无效, 登录 -> 退出)
application
全局对象 , 整个项目期间都有效,切换浏览器仍有效。关闭服务,其他项目 无效。 --> 要实现多个项目共享,重启后仍然有效,JNDI
对象的范围越大 造成的性能损耗越大
以上四种方法共有的方法:
void setAttribute(String name , Object obj);设置属性值(新增 , 修改)
Object getAttribute(String name): 获取属性名或属性值
setAttribute(“a”,“b”); // 如果a对象之前不存在,则新建一个a对象
// 如果a对象之前已经存在,则 a 的值改为 b
void removeAttribute(Stirng name) : 根据属性名 删除对象