本文为web入门级,先给大家看看效果图吧! 后续推出企业级网站开发教程,服务器集群,缓存策略,数据算法等文章,敬请期待。
这个简洁的界面,大家可以自己去加以修改完善。
好了,开始步入正题。
这个web工程的思路是什么呢?
好了,我们的具体思路呢?
首先,我们新创建一个web项目,点击new—>>>Dynamic Web Project—>>>输入项目名称—>>>最后勾选上自动生成web.xml文件。具体看下图:
注意:记得勾选上web.xml配置文件
web工程的结构图如下:
在开始我们的项目前,因为要用到jdbc连接数据库。我们先干两件事,导入servlet-api.jar包,导入数据库驱动包。这是必须的。否则报错。
sql server 2008的jdbc驱动jar包下载地址:
SQl server 2008 的jdbc驱动下载地址: 密码:55o3
第一步:导入servlet-api.jar包,该包在tomcat的lib目录下。
第二步:窗口(windows)—>>>首选项(preferences)—->>>>选择java—>>>选择已安装的JRES(Installed JRES)—>>>选中standard VM—->>>选择编辑(Edit)—->>>>选择增加额外的包(Add External Jars)—>>>选择你的servlet-api.jar包导入—->>>确定完成导入。演示操作如下:
build path为编译环境的导入。而以上操作为全局操作,该操作不可少。
在上面操作完成后,我们开始正式地编写代码。
首先新建一个01文件夹,new—>>>folder—>>>01—ok;该文件夹用来保存jsp文件。然后我们创建一个login.jsp文件。
代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<head>
<meta charset="UTF-8">
<title>表单提交title>
<link rel="stylesheet" href="../css/form.css"/>
head>
<body>
<div id="container">
<div id="title_nav">div>
<div id="content">
<div id="form_sub">
<p id="manage_tx">管理员登陆面板p>
<form id="form_sub_a" action="<%=request.getContextPath()%>/mylogin" method="post">
<p class="tx_01">账号: <input class="input_va" type="text" name="user" />p>
<p class="tx_01">密码: <input class="input_va" type="password" name="password" />p>
<input class="btn_s" type="submit" value="登陆" />
<input class="btn_s" type="reset" value="取消" />
form>
div>
div>
div>
body>
html>
从上面的代码中截取关键进行讲解:
"manage_tx">管理员登陆面板
看到该段代码,这是一个form表单,里面四个input控件。一个输入框,一个密码框。一个提交按钮,一个重置密码。
form中的action的值为上下文的路径加上servlet的映射地址。该映射地址在web.xml配置中的
上下文的路径我们通过下面这个函数得到:
<%=request.getContextPath()%>
那么我们的action的完整路径就是
action="<%=request.getContextPath()%>/mylogin"
然后在写完了登陆页面后,我们开始配置下一个servlet。
在WebContent目录下的Web-INF下的web.xml文件中,增加一个servlet。
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>py01display-name>
<servlet>
<servlet-name>LoginTestservlet-name>
<servlet-class>com.mero.test.LoginServlet.LoginTestservlet-class>
servlet>
<welcome-file-list>
<welcome-file>index.htmlwelcome-file>
<welcome-file>index.htmwelcome-file>
<welcome-file>index.jspwelcome-file>
<welcome-file>default.htmlwelcome-file>
<welcome-file>default.htmwelcome-file>
<welcome-file>default.jspwelcome-file>
welcome-file-list>
<servlet-mapping>
<servlet-name>LoginTestservlet-name>
<url-pattern>/myloginurl-pattern>
servlet-mapping>
web-app>
我们截取关键代码讲解下:
<servlet>
<servlet-name>LoginTestservlet-name>
<servlet-class>com.mero.test.LoginServlet.LoginTestservlet-class>
servlet>
这个servlet标签中有两子标签,
我们再看到
<servlet-mapping>
<servlet-name>LoginTestservlet-name>
<url-pattern>/myloginurl-pattern>
servlet-mapping>
配置好了web.xml后,我们创建该名为LoginTest的servlet。
在src目录下新建一个包,再创建一个servlet。右键—>new—->servlet。在这里,我们新建的servlet和之前在web.xml中配置的名称一样。取名LoginTest.java。
LoginTest.java具体代码如下:
package com.mero.test.LoginServlet;
import java.io.IOException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.mero.test.DbDao;
/**
* Servlet implementation class LoginTest
*/
@WebServlet("/LoginTest")
public class LoginTest extends HttpServlet {
public Connection conn=null;
public static String username;
public static String password;
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public LoginTest() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doPost(request, response);
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
//获得表单提交的数据
username=request.getParameter("user");
password=request.getParameter("password");
System.out.println(username);
System.out.println(password);
System.out.println("得到request请求参数成功");
try {
conn=DbDao.getConnection();
//得到Statement对象
Statement statement=conn.createStatement();
ResultSet set=statement.executeQuery("select username,password from userInfo where username=790710371");
while(set.next()){
String name=set.getString(1);
String pwd=set.getString(2);
if(username!=null&&password!=null&&username.equals(name)&&password.equals(pwd)){
String forward="/01/success.jsp";
RequestDispatcher df=request.getRequestDispatcher(forward);
df.forward(request, response);
}else{
String forward="/01/failed.jsp";
RequestDispatcher df=request.getRequestDispatcher(forward);
df.forward(request, response);
}
}
} catch (ClassNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//将表单中的数据与数据库中的数据进行查询
}
}
挑选关键代码进行讲解:
我们看到下面这段代码。我们先通过数据库工具类得到connection连接对象,再通过如下方法获取Statement对象。
Statement statement=conn.createStatement();
我们通过下面方法得到结果集对象 ,Statement对象执行sql语句得到结果集
String sql="select * From table"
ResultSet set=statement.excuteQuery(sql);
然后遍历数据库查询得到账号密码:
while(set.next()){
String username=set.getString(1);
String password=set.getString(2);
.....
}
我们再将得到的字符串与请求得到的参数进行对比。如果参数一致则d登陆成功跳转到success.jsp界面,否则登陆失败跳转到failed。
逻辑判断如下:
if(username!=null&&password!=null&&username.equals(name)&&password.equals(pwd)){
String forward="/01/success.jsp";
RequestDispatcher df=request.getRequestDispatcher(forward);
df.forward(request, response);
}else{
String forward="/01/failed.jsp";
RequestDispatcher df=request.getRequestDispatcher(forward);
df.forward(request, response);
}
这里的jsp转发请点击查看上篇文章:Java web第九课(登陆后的转发)
然后看到我们的工具类,这个类中只包含了得到connection对象以及关闭Statement对象和关闭connection对象的三个方法。
DbDao.java代码如下:
package com.mero.test;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class DbDao {
public static Connection conn=null;
public static Connection getConnection() throws ClassNotFoundException{
//加载驱动
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
System.out.println("加载驱动成功");
try {
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");//加载数据库驱动
if(null==conn){
System.out.println("暂时未连接");
//得到数据库驱动连接流
//下面的参数格式如下:jdbc连接方式:数据库类型:带端口的主机地址;"数据库名称","数据库登陆名","数据库密码";
conn=DriverManager.getConnection("jdbc:sqlserver://localhost:1433;DatabaseName=Test","sa", "adadadada");
//
return conn;
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return conn;
}
public static void closeStatement(Statement statement){
if(statement!=null){
try {
statement.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static void closeConnection(Connection conn){
if(conn!=null){
try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
Class.forName(String arg0);
这个方法用来加载数据库驱动,不同的数据库以及数据库版本的不同填写的不一样。请注意你的数据库版本。我采用的是SQL server 2008.
String Url="jdbc连接方式:数据库类型:带端口的主机地址"
Connection conn=DriverManager.getConnection(Url,Datebase,username,password);
最后编写我们的登陆成功和登陆失败的两个跳转界面的jsp文件。分别为success.jsp和failed.jsp文件。
success.jsp文件和failed.jsp文件中的代码几乎相同。如下:
success.jsp代码:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>登陆成功提示title>
head>
<body>
登陆成功 <br/>
你的登陆信息如下:<br/>
账号:<%=request.getParameter("user") %><br/>
密码:<%=request.getParameter("password") %><br/>
<a href="<%=request.getContextPath()%>/01/login.jsp">返回登陆界面a>
body>
html>
failed.jsp代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>登陆失败提示title>
head>
<body>
登陆失败 <br/>
你的登陆信息如下:<br/>
账号:<%=request.getParameter("user") %><br/>
密码:<%=request.getParameter("password") %><br/>
<a href="<%=request.getContextPath()%>/01/login.jsp">返回登陆界面a>
body>
html>
这样,再给出最后一个CSS样式文件 :
form.css代码如下:
@CHARSET "UTF-8";
*{
margin: 0;
}
body{
width: 100%;
height: 100;
background-color: lightpink;
}
#container{
width: 100%;
heiipsght: 100%;
}
#title_nav{
width: 100%;
height: 40px;
background-color: skyblue;
}
#content{
width: 100%;
height: 1000px;
background-color: lightpink;
}
#form_sub{
margin-left: auto;
margin-right: auto;
width: 400px;
height:270px;
margin-top: 100px;
text-align: center;
font-family: 微软雅黑;
background-color: #008AB8;
}
#manage_tx{
padding-top: 20px;
padding-bottom: 20px;
font-size: 25px;
outline-width:2px;
outline-style:dashed;
color:blanchedalmond;
background-color:#95CAE4;
background-repeat: no-repeat;
}
#form_sub_a{
margin-top: 30px;
margin-bottom: 30px;
font-family: sans-serif;
font-size: 15px;
color:purple;
outline-width: 1px;
}
.tx_01{
color:#95CAE4;
font-size:18px;
font-family: 微软雅黑;
}
.input_va{
width:60%;
height:25px;
border:1px solid darkseagreen;
outline:none;
margin-top: 10px;
padding-left:10px;
padding-top: 3px;
border-radius:30px;
}
.btn_s{
width:100px;
height:30px;
padding: 5px;
margin:20px 30px;
border-radius:5px;
background: transparent;
color: white;
}
.btn_s:hover{
color:red;
opacity:0.5;
}
.btn_s:ACTIVE{
color: orange;
}
.btn_s:visited{
color: red;}
.btn_s:left{
color:white;}
}
ok了,以上便是所有的文件讲解。
代码写完之后。我们导出该项目到桌面,格式为war。然后把war文件放到我们的tomcat目录的webapps下。然后双击bin目录下的startup.bat文件开启服务器,服务器将自动解压缩该war文件。
打开浏览器,输入localhost:8080/py01/01/login.jsp
最后上两张效果图: 这两个jsp非常简单,为了简单此Demo并未增加样式。
感谢大家看完本篇文章,欢迎转载收藏!付出的汗水,总有一天会得到回报。