Java遇见HTML的6篇文章技术较老只是在熟悉java基础知识和了解mvc模型思想
session内置对象
session表示客户端与服务端的一次会话。
session生命周期
创建、活动、销毁
application内置对象
<%
application.setAttribute("username","zhoujielun");
application.setAttribute("age",20);
application.setAttribute("city","北京");
Enumeration at=application.getAttributeNames();
while (at.hasMoreElements())
{
out.println(at.nextElement()+"  ");
}
%>
page内置对象、pageContext对象和config对象
exception对象
与java中的exception类似。
JavaBeans
JavaBeans就是创建一个java类,该类是public公有的类,有private私有的属性,有一个无参的构造方法,有公有的get和set方法。
创建一个实体类:
在jsp中创建实体类对象,调用set方法赋值,get方法获取值:
javabean动作元素
<jsp:userBean>动作:
<jsp:setProperty>动作:
在login.jsp中写一个表单,表单中定义的字段name与student类中的字段名称对应,表单指向dologin.jsp:
mypass的值是在login.jsp表单指向dologin.jsp的路径参数中:
<jsp:getProperty>动作:
直接获取用户信息:
<jsp:useBean id="getstudentbean" class="com.zhidaoauto.model.Student" scope="page"/>
学生姓名:<jsp:getProperty name="getstudentbean" property="studentname"/>
javabean不仅仅是对象实体类,也可以是业务逻辑类。
比如把校验登录信息的业务逻辑放到一个类中,在jsp中引用这个类去校验
dao业务逻辑类:
package com.zhidaoauto.dao;
import com.zhidaoauto.model.Student;
/*
专门写业务逻辑层
*/
public class StudentDao {
public Boolean studentLogin(Student student){
if (student.getStudentname().equals("qzx")){
return true;
}else {
return false;
}
}
}
dologin.jsp中使用usebean引用Student类和StudentDao类
jsp状态管理
一个小例子讲解cookie的使用,先进入login.jsp中输入用户名和密码跳转到dologin.jsp,通过超链接再跳转到userinfo.jsp中查看通过cookie存储的用户名和密码
login.jsp页面:
<%@ page import="java.net.URLDecoder" %><%--
Created by IntelliJ IDEA.
User: Administrator
Date: 2020/4/23
Time: 14:21
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>login</title>
</head>
<body>
<h1>用户登录</h1>
<hr>
<%--先进入login.jsp中输入用户名和密码跳转到dologin.jsp,通过超链接再跳转到userinfo.jsp中查看通过cookie存储的用户名和密码--%>
<%
request.setCharacterEncoding("utf-8");
//让输入框中回显上一次输入的信息,其实就是把保存的cookie值展示出来
Cookie[] c=request.getCookies();
String username="";
String password="";
if (c!=null && c.length>0){
for (Cookie cookie:c){
if (cookie.getName().equals("username")){
username= URLDecoder.decode(cookie.getValue(),"utf-8");
}else if(cookie.getName().equals("password")) {
password=URLDecoder.decode(cookie.getValue(),"utf-8");
}
}
}
%>
<form action="dologin.jsp" method="post">
<table>
<tr>
<td>用户名:</td>
<td><input type="text" name="username" value="<%=username%>"></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password" value="<%=password%>"></td>
</tr>
<tr>
<td colspan="2"><input type="checkbox" name="ischeck" checked="checked">是否保存用户信息</td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="登录"></td>
</tr>
</table>
</form>
</body>
</html>
dologin.jsp页面:
<%@ page import="java.net.URLEncoder" %><%--
Created by IntelliJ IDEA.
User: Administrator
Date: 2020/4/23
Time: 14:21
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>dologin</title>
</head>
<body>
<h1>登录成功</h1>
<hr>
<%
//设置字符集编码是utf-8,这样能接收输入的中文信息
request.setCharacterEncoding("utf-8");
//先判断用户是否勾选了保存用户名和密码,ischeck是login.jsp页面中复选框的name值
String[] ischeck=request.getParameterValues("ischeck");
//ischeck不为空并且长度大于0,代表勾选了复选框
if (ischeck !=null && ischeck.length>0){
//获取用户名和密码保存到cookie中,并设置cookie的最大时效是10天
//URLEncoder.encode(参数值,“utf-8”) 设置字符集为utf-8,后面获取cookie值是要解码URLDecoder.decode(参数值,“utf-8”)
Cookie cookie=new Cookie("username",URLEncoder.encode(request.getParameter("username"),"utf-8"));
Cookie cookie1=new Cookie("password",URLEncoder.encode(request.getParameter("password"),"utf-8"));
//设置cookie最大时效是10天,以秒为单位
cookie.setMaxAge(864000);
cookie1.setMaxAge(864000);
//把cookie存到response中
response.addCookie(cookie);
response.addCookie(cookie1);
}else {
//不保存到cookie中,设置cookie时长为0,清空cookie
Cookie[] c=request.getCookies();
if (c!=null && c.length>0){
for (Cookie cookie:c){
if (cookie.getName().equals("username") || cookie.getName().equals("password")){
cookie.setMaxAge(0);
//同时把清空的cookie存到response中
response.addCookie(cookie);
}
}
}
}
%>
<a href="userinfo.jsp">查看用户信息</a>
</body>
</html>
userinfo.jsp页面:
<%@ page import="java.net.URLDecoder" %><%--
Created by IntelliJ IDEA.
User: Administrator
Date: 2020/4/23
Time: 14:22
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>用户信息</h1>
<hr>
<%
request.setCharacterEncoding("utf-8");
String username="";
String password="";
//从request中获取cookie中的用户名和密码
Cookie[] c=request.getCookies();
if (c != null && c.length>0){
for (Cookie cookie:c){
if (cookie.getName().equals("username")){
username= URLDecoder.decode(cookie.getValue(),"utf-8");
}else if (cookie.getName().equals("password")){
password=URLDecoder.decode(cookie.getValue(),"utf-8");
}
}
}
%>
用户名:<%=username%><br>
密码:<%=password%>
</body>
</html>