用户管理实现思路

图片无法正常加载,请联系本文作者

  • 导入分页的工具类util->PageSupport.java
  • userlist.jsp其中引入rollpage.jsp

1. 获取用户数量

UserDao查询用户总数,Dao层使用聚合函数COUNT(*)查询用户表一共多少条记录->

    //根据用户名或者角色查询用户总数
    public int getUserCount(Connection connection, String username, int userRole) throws SQLException;

UserService,service层用于统计总共有多少条数据->

 //查询记录数
    public int getUesrCount(String username,int userRole);

servlet层用于向前端返回总共的数据条数

2. 获取用户列表

UserDao获取用户列表

//获取用户列表,通过条件查询user list
    List<User> getUserList(Connection con, String userName, int userRole, int currentPageNo, int pageSize) throws Exception;

UserService

 public List<User> getUserList(String userName, int userRole, int currentPageNo, int pageSize);

3. 获取角色列表

为了职责统一,可以把角色的操作单独放在一个包中,和pojo类对应
dao->role->RoleDao

public List<Role> getRoleList(Connection conn) throws SQLException;

RoleService

//1、获取角色列表
public List<Role> getRoleList();

编写servlet

  1. 获取用户前端的数据(查询)
  2. 判断请求是否需要执行,看参数的值判断
  3. 为了实现分页,需要计算出当前页面和总页面、页面大小
  4. 用户列表展示
  5. 返回前端
posted @ 2023-03-07 16:56  gyViolet  阅读(21)  评论(0编辑  收藏  举报