使用jsp和servlet实现一个简单的分页查询

使用jsp和servlet实现一个简单的分页查询

                                        ——Javee

注:创建Java EE web项目和导入相关的依赖包和如何运行servlet我在上一篇文章中有了具体的介绍,还不会的小伙伴可以查看我的上一篇文章 (从0到1使用汤姆猫(tomcat)和servlet实现登录和注册)

在开始我们的项目之前,我们先了解一下什么是jsp,它能做些什么?

jsp(java server page),为Java服务器端代码,在html代码中以<%%>包含,文件以jsp作为后缀,jsp可以跨平台。

我们还是使用上一个项目源码见前一篇文章“从0到1使用汤姆猫(tomcat)和servlet实现登录和注册”的顶部下载链接

我们今天要实现的功能如下:

  • 用户打开看到注册页面

  • 用户注册成功后直接转到登录页面

  • 用户登录成功后转入用户选择界面,否则提示用户用户名或密码错误

  • 用户选择界面显示所有人的注册信息(虽然这个功能很low,但这只是一个Demo,主要是为了学习知识)

  • 显示用户查询界面,每页显示3条数据,根据用户选择的页数显示响应页数的数据

我们打开项目,将项目中的login.html和reg.html修改为login.jsp和reg.jsp,具体代码如下:

<!--login.jsp-->
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>登录</title>
</head>
<body>
<div id="background" style="width: 400px; height: 700px; margin: auto; padding-top: 100px;">
    <form action="login.do" method="post">
        <input type="text" name="name" placeholder="用户名"
               style="width: 300px; height:40px; border-radius: 5px; margin:auto; font-size: 20px;" />

        <input type="password" name="pass" placeholder="密码"
               style="width: 300px; height:40px; border-radius: 5px; margin:auto; font-size: 20px;" />

        <input type="submit" value="登录"
               style="padding: 10px 20px; color:white; background-color: #0084FF; border-radius: 5px; border:none; margin:0 110px; font-size: 20px;" />
    </form>
</div>
</body>
</html>
<!--reg.jsp-->
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>注册</title>
</head>
<body>
<div id="background" style="width: 400px; height: 700px; margin: auto; padding-top: 100px;">
    <form action="reg.do" method="post">
        <input type="text" name="name" placeholder="用户名"
               style="width: 300px; height:40px; border-radius: 5px; margin:auto; font-size: 20px;" />

        <input type="password" name="pass" placeholder="密码"
               style="width: 300px; height:40px; border-radius: 5px; margin:auto; font-size: 20px;" />

        <input type="submit" value="注册"
               style="padding: 10px 20px; color:white; background-color: #0084FF; border-radius: 5px; border:none; margin:0 110px; font-size: 20px;" />
    </form>
</div>
</body>
</html>

我们再新建两个jsp文件:select.jsp(登录后显示全部注册信息,并且用户选择显示的页数),show.jsp(显示用户选择的页数相对应的信息)

<!--select.jsp-->
<%@ page import="model.User" %>
<%@ page import="java.util.ArrayList" %>
<%@ page import="java.sql.Connection" %>
<%@ page import="util.DBLink" %>
<%@ page import="java.sql.PreparedStatement" %>
<%@ page import="java.sql.ResultSet" %><%--
  Created by IntelliJ IDEA.
  User: Javee
  Date: 2019/9/4
  Time: 18:44
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>用户选择</title>
    <style>
        #bg{
            width: 150px;
            margin: 100px auto;
        }
        select{
            padding: 10px 20px;
            font-size: 20px;
            border-radius: 5px;
        }
        input{
            padding: 10px 20px;
            color:white;
            background-color: #0084FF;
            border-radius: 5px;
            border:none;
            margin: 10px 18px;
            font-size: 20px;
        }
        table{
            margin: 100px auto;
        }
        caption{
            font-size: 25px;
            font-weight: bold;
        }
        th, td{
            padding: 5px 10px;
            font-size: 20px;
            border: 1px solid #000;
        }
    </style>
</head>
<body>
<%
    ArrayList<User> arr = new ArrayList<>();
    Connection con = DBLink.getCon();

    String sql = "select * from t_user u";
    PreparedStatement ps = con.prepareStatement(sql);

    ResultSet res = ps.executeQuery();

    while(res.next()) {
        User user = new User();
        user.setId(res.getInt("id"));
        user.setName(res.getString("name"));
        user.setPass(res.getString("pass"));
        user.setDate(res.getDate("regdate").toString());


        arr.add(user);
    }
%>

<table cellpadding="0px" cellspacing="0px">
    <caption>全部注册信息</caption>
    <thead>
    <tr>
        <th>Id</th>
        <th>Name</th>
        <th>Password</th>
        <th>Date</th>
    </tr>
    </thead>

    <%
        for (User user : arr) {
    %>
    <tr>
        <td><%=user.getId()%></td>
        <td><%=user.getName()%></td>
        <td><%=user.getPass()%></td>
        <td><%=user.getDate()%></td>
    </tr>
    <% } %>
</table>

<form action="select.do" method="post">
    <div id="bg">
        <select name="choose">
            <option value="1">第一页</option>
            <option value="2">第二页</option>
            <option value="3">第三页</option>
            <option value="4">第四页</option>
        </select>

        <input type="submit" value="确认">
    </div>
</form>
</body>
</html>
<!--show.jsp-->
<html>
<head>
    <title>显示用户查询</title>
    <style>
        table{
            margin: 100px auto;
        }
        caption{
            font-size: 25px;
            font-weight: bold;
        }
        th, td{
            padding: 5px 10px;
            font-size: 20px;
            border: 1px solid #000;
        }
    </style>
</head>
<body>
<table cellpadding="0px" cellspacing="0px">
    <caption>第<%=request.getAttribute("num")%>页数据</caption>
    <thead>
        <tr>
            <th>Id</th>
            <th>Name</th>
            <th>Password</th>
            <th>Date</th>
        </tr>
    </thead>
    <% for (int i = 1; i <= 3; i++) {
    %>
    <tr>
        <td><%=request.getAttribute("id" + i)%></td>
        <td><%=request.getAttribute("name" + i)%></td>
        <td><%=request.getAttribute("pass" + i)%></td>
        <td><%=request.getAttribute("date" + i)%></td>
    </tr>
    <% } %>
</table>
</body>
</html>

注意,在select.jsp中,我插入了数据库查询的Java代码,这就是jsp有别于html的地方

我们再修改一下src->dao->Operate.java,具体如下:

package dao;

import model.User;
import util.DBLink;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;

/**
* @Author Javee
* @Date 2019/9/3 19:27
* @Description
*/
public class Operate extends HttpServlet {
    public void service(HttpServletRequest req, HttpServletResponse res)
            throws UnsupportedEncodingException {
        //System.out.println("service ok...");
        req.setCharacterEncoding("utf-8");
        res.setContentType("text/html;charset=utf-8");

        String uri = req.getRequestURI();
        uri = uri.substring(uri.lastIndexOf("/"), uri.lastIndexOf("."));

        if(uri.equals("/reg")){
            String name = req.getParameter("name");
            String pass = req.getParameter("pass");

            User user = new User();
            user.setName(name);
            user.setPass(pass);

            Connection con = null;
            try {
                con = DBLink.getCon();
                String sql = "insert into t_user values (seq_t_user.nextval, ?, ?, to_date(sysdate))";
                PreparedStatement ps = con.prepareStatement(sql);
                ps.setObject(1, user.getName());
                ps.setObject(2, user.getPass());

                ps.executeUpdate();
                ps.close();
                DBLink.close(con);

                res.sendRedirect("login.jsp");
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    DBLink.close(con);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }else if(uri.equals("/login")){
            Connection con = null;

            String name = req.getParameter("name");
            String pass = req.getParameter("pass");

            User user = new User();
            user.setName(name);
            user.setPass(pass);

            try {
                con = DBLink.getCon();

                String sql = "select count(1) num from t_user where name = ? and pass = ?";
                PreparedStatement ps = con.prepareStatement(sql);

                ps.setObject(1, user.getName());
                ps.setObject(2, user.getPass());

                ResultSet rs = ps.executeQuery();
                PrintWriter o = res.getWriter();
                while(rs.next()){
                    if(rs.getInt("num") == 1){
                        res.sendRedirect("select.jsp");
                    }else{
                        o.println("用户名或密码错误!");
                    }
                }

            } catch (SQLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }else if(uri.equals("/select")){
            int choose = Integer.parseInt(req.getParameter("choose"));

            try{
                ArrayList<User> arr = SelectUser(choose);
                //设置参数值
                req.setAttribute("num", choose);
                int i = 0;
                for (User user : arr) {
                    i++;
                    req.setAttribute("id" + i, user.getId());
                    req.setAttribute("name" + i, user.getName());
                    req.setAttribute("pass" + i, user.getPass());
                    req.setAttribute("date" + i, user.getDate());
                }
                //转发页面
                req.getRequestDispatcher("show.jsp").forward(req, res);
                //
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public static ArrayList<User> SelectUser(int i) throws Exception {
        ArrayList<User> arr = new ArrayList<>();
        Connection con = DBLink.getCon();

        String sql = "select * from (select u.*, rownum num from t_user u where rownum <= ?) where num >= ?";
        PreparedStatement ps = con.prepareStatement(sql);
        ps.setObject(1, 3 * i);
        ps.setObject(2, 3 * i - 2);

        ResultSet res = ps.executeQuery();

        while(res.next()){
            User user = new User();
            user.setId(res.getInt("id"));
            user.setName(res.getString("name"));
            user.setPass(res.getString("pass"));
            user.setDate(res.getDate("regdate").toString());

            arr.add(user);
        }

        return arr;
    }
}

其他的不用修改,直接运行项目,运行后浏览器自动打开localhost:8086,我们在后面加上“/reg.jsp”就可以看到如下结果

输入完成后点击注册,页面跳转到登录界面

点击登录,密码输入错误时,提示用户名或密码错误,验证成功后,显示如下界面

下拉列表选择第二页数据,点击确认进行查询

页面显示第2页数据,因为只有5条数据,所以第六条显示为null

到这里我们今天的项目就完成啦~

具体代码见顶部下载链接~~~~~~~~~~~~~

 

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值