这周老师带领我们共同学习了jsp的一些基础安装和配置环境等,具体的内容我就不一一到来了。
安装与配置的操作:https://blog.csdn.net/howard2005/article/details/100194354
https://blog.csdn.net/howard2005/article/details/100511481
然后呢就是这次的作业,登陆的web作业:
首先把web加到项目中,目录结构大概如下:
然后最好先把jsp的jar包导进项目:
具体从操作:
然后ok就好了,就完成了导包。
然后就是重点了:写jsp文件:
1、写login.jsp文件
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>用户登录</title>
</head>
<body>
<h3 style="text-align: center">用户登录</h3>
<form action="do_login.jsp" method="post">
<table border="1" cellpadding="10" style="margin: 0px auto">
<tr>
<td align="center">用户名</td>
<td><input type="text" name="username"/></td>
</tr>
<tr>
<td align="center">密码</td>
<td><input type="text" name="password"/></td>
</tr>
<tr align="center">
<td colspan="2">
<input type="submit" value="登录"/>
<input type="reset" value="重置"/>
</td>
</tr>
</table>
</form>
</body>
</html>
2、写do_login就是处理的一些登陆逻辑页面。
<%
//获取登录表单数据
String username = request.getParameter("username");
String password = request.getParameter("password");
//判断登录是否成功
if(username.equals("admin") && password.equals("p@ssw0rd")){
//采用重定向,跳转到登录成功页面
response.sendRedirect("success.jsp?username="+username);
}else {
//采用重定向,跳转到登录失败页面
response.sendRedirect("failure.jsp?username="+username);
}
%>
3、写success.jsp页面
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>登录成功</title>
</head>
<body>
<h3><%= request.getParameter("username")%>,登录成功!</h3>
</body>
</html>
4、写failure.jsp文件
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>登录失败</title>
</head>
<body>
<h3><%= request.getParameter("username")%>,登录失败!</h3>
</body>
</html>
最终效果
我觉得最为重要的是写do_login,因为我们还有好多知识点没讲,所以有的
例如: request.getParameter(“username”);
response.sendRedirect(“success.jsp?username=”+username);
这两个方法不知道是什么意思等,不过我有度娘:
https://www.cnblogs.com/MrzhangKk/p/5334259.html
这个讲的还不错可以看下,理解一下。