JSP制作简单登录界面实例
程序员文章站
2022-06-29 13:24:11
现在很多web项目都能用到登录界面,本文介绍一下jsp制作简单登录界面,分享给大家,具体如下:
运行环境
eclipse+tomcat+mysql 不知道的可以参考...
现在很多web项目都能用到登录界面,本文介绍一下jsp制作简单登录界面,分享给大家,具体如下:
运行环境
eclipse+tomcat+mysql 不知道的可以参考jsp运行环境——tomcat
项目列表
这里我先把jsp文件先放在web-inf外面访问
1.需要建立的几个文件在图上.jsp
2.还要导入mysql的jar包mysql-5.0.5.jar,导到web-inf中的lib文件夹就可以不需要bulid path
3.开始编写代码:
代码演示:
index.jsp就好像一般网站的首页一样感觉,将header.jsp和footer.jsp引入其中
<%@ 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>首页</title> <style> #nav>ul>li{ float:left; margin-left:50px; } #login{ clear:both; } </style> </head> <body> <!-- 引入header.jsp的头部文件 --> <%@ include file="header.jsp" %> <div id="login"> <a href="login.jsp" rel="external nofollow" ><button>登陆</button></a> </div> <!-- 引入footer.jsp的脚部文件 --> <%@include file="footer.jsp" %> </body> </html>
header.jsp
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <div id="nav"> <ul> <li ><a href="">导航1</a></li> <li><a href="">导航2</a></li> <li><a href="">导航3</a></li> <li><a href="">导航4</a></li> <li><a href="">导航5</a></li> <li><a href="">导航6</a></li> </ul> </div>
footer.jsp
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <div> <p>xxxxxxxxxxx可以试试|xxxxxxxxxxxx技术有限公司</p> <p>京 icp 证 1234567 号|copyright © 1999-2017, all rights reserved </p> </div>
页面内容展示:
login.jsp登陆用户名密码填写界面
<%@ 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>登陆页面</title> </head> <body> <%--表单--%> <fieldset> <legend>登陆界面</legend> <form action="test.jsp" method="post"> <input type="text" name="username"><br> <input type="password" name="password"><br> <input type="submit" value="登陆"> <!-- el语句,后面验证表单时,验证错误反回信息--> ${error} </form> </fieldset> </body> </html>
内容显示:
test.jsp 是对表单login.jsp 的提交的内容与数据库中的数据对比验证,再相应的跳转
<%@page import="java.sql.*"%> <%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <% //请求获取login.jsp的用户名username的值 string username=request.getparameter("username"); //请求获取login.jsp的密码password的值 string password=request.getparameter("password"); //数据库mysql的地址 string dburl="jdbc:mysql://localhost:3306/zhou?useunicode=true&characterencoding=utf-8"; string dbname="root"; //登入用户名 string dbpwd="123456";//登入密码 //加载mysql驱动 class.forname("com.mysql.jdbc.driver"); //连接数据库 connection conn=drivermanager.getconnection(dburl,dbname,dbpwd); //创建statement对象 statement st=conn.createstatement(); //sql语句,搜索这个username和password在数据库是否存在 string sql="select * from user where name='"+username+"'and pwd='"+password+"'"; //运行sql语句,并把得到的结果放入结果集resultset中 resultset rs=st.executequery(sql); //判断这个结果集是否存在,一般username只有一个 if(rs.next()){ //设置一个username,将后面username其内容赋值给前面一个username,可以以便下一个页面使用 request.setattribute("username", username); //跳转页面到userpage.jsp request.getrequestdispatcher("userpage.jsp").forward(request, response); }else{ //设置一个error,将后面的字赋给这个error,以便先一个跳转页面的使用,request的作用域有限 request.setattribute("error", "用户名或密码错误!!!"); request.getrequestdispatcher("login.jsp").forward(request, response); } conn.close(); rs.close(); %>
登陆错误显示的页面内容:
userpage.jsp这个页面就是登陆成功之后显示的页面
<%@page import="javafx.scene.chart.piechart.data"%> <%@page import="java.util.date"%> <%@ 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>用户界面</title> </head> <body> <div> <!-- ${username}是获取到test.jsp 中判断中重新设置的username,知道是谁登陆了,这个是谁的页面 --> <p>${username},你好,登陆成功!!</p> </div> <% //session的作用域问题,可以记录一个网站的浏览量。先得到一个count object obj=session.getattribute("count"); //判断这个对象是否为空 if(obj==null){ //空则重新设置一下count的值 session.setattribute("count", 0); }else{ //否则将得到的对象强转加1,就可以记录浏览量 int i=(int)obj+1; session.setattribute("count", i); %> <div>你是第<%=i %>位登陆的用户</div> <% } //获取当前时间 date date=new date(); out.print("现在时间:"+date); %> <div>你的ip地址:<%=request.getremoteaddr()%></div> </body> </html>
页面内容:localhost就是127.0.0.1,有时候地址栏是local host时会显示8个0:
整个简单的登陆就完事了
想了解el语言的具体感觉可以看这个 jsp中的el表达式详细介绍
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: jsp页面验证码完整实例