博客
关于我
超市订单管理系统项目(2)——登录功能实现(后端)
阅读量:338 次
发布时间:2019-03-04

本文共 4217 字,大约阅读时间需要 14 分钟。

登录功能实现

1. 登录页面设置

登录页面应设置为 login.jsp,并在欢迎页中指定登录页面或通过 index.jsp 转发至 login.jsp。以下是通过 index.jsp 实现的转发方式:

2. 数据库访问接口

定义 LoginDao 接口,用于获取用户登录信息:

public interface LoginDao {    User getLogin(String userCode) throws SQLException;}

3. 数据库访问实现类

实现 LoginDao 接口的 LoginDaoImpl 类:

public class LoginDaoImpl implements LoginDao {    @Override    public User getLogin(String uCode) throws SQLException {        Connection conn = BaseDao.getConn();        if (conn != null) {            try {                PreparedStatement preparedStatement = conn.prepareStatement(                    "SELECT * FROM smbms_user WHERE userCode = ?");                preparedStatement.setString(1, uCode);                ResultSet resultSet = BaseDao.executeQ(conn, preparedStatement, null, null);                if (resultSet.next()) {                    User user = new User();                    user.setId(resultSet.getInt("id"));                    user.setUserCode(resultSet.getString("userCode"));                    user.setUserName(resultSet.getString("userName"));                    user.setUserPassword(resultSet.getString("userPassword"));                    // 其他字段获取和赋值                    return user;                }            } catch (SQLException e) {                e.printStackTrace();            }            BaseDao.close(conn, preparedStatement, null);        }        return null;    }}

4. 业务逻辑接口

定义 LoginService 接口,用于处理登录业务:

public interface LoginService {    User login(String uCode, String uPassword) throws SQLException;}

5. 业务逻辑实现类

实现 LoginService 接口的 LoginServiceImpl 类:

public class LoginServiceImpl implements LoginService {    @Override    public User login(String uCode, String uPassword) throws SQLException {        LoginDao loginDao = new LoginDaoImpl();        User user = loginDao.getLogin(uCode);        return user;    }}

6. 登录Servlet实现

创建 LoginServlet 类,处理登录请求:

@WebServlet("/login.do")public class LoginServlet extends HttpServlet {    @Override    protected void service(HttpServletRequest req, HttpServletResponse resp)        throws ServletException, IOException {        String userCode = req.getParameter("userCode");        String password = req.getParameter("userPassword");        LoginService loginService = new LoginServiceImpl();        try {            User user = loginService.login(userCode, password);            if (user != null) {                HttpSession session = req.getSession();                session.setAttribute(Constants.USER_SESSION, user);                resp.sendRedirect("frame.jsp");            } else {                req.setAttribute("error", "用户名或密码错误");                req.getRequestDispatcher("login.jsp").forward(req, resp);            }        } catch (SQLException e) {            e.printStackTrace();        }    }}

7. 登出功能实现

创建 LogoutServlet 类,处理注销操作:

@WebServlet("/user/exit.do")public class LogoutServlet extends HttpServlet {    @Override    protected void service(HttpServletRequest req, HttpServletResponse resp)        throws ServletException, IOException {        HttpSession session = req.getSession();        session.removeAttribute(Constants.USER_SESSION);        resp.sendRedirect("/login.jsp");    }}

8. 登录拦截优化

创建 SysFilter 类,实现登录拦截:

@WebFilter("/jsp/*")public class SysFilter implements Filter {    @Override    public void init(FilterConfig filterConfig) throws ServletException {        // 初始化逻辑可根据需求添加    }    @Override    public void doFilter(        ServletRequest servletRequest,        ServletResponse servletResponse,        FilterChain filterChain)        throws IOException, ServletException {        HttpServletRequest request = (HttpServletRequest) servletRequest;        HttpServletResponse response = (HttpServletResponse) servletResponse;        HttpSession session = request.getSession();        User user_sess = (User) session.getAttribute(Constants.USER_SESSION);        if (user_sess == null) {            request.getRequestDispatcher("/error.jsp").forward(request, response);        } else {            filterChain.doFilter(servletRequest, servletResponse);        }    }    @Override    public void destroy() {        // 销毁逻辑可根据需求添加    }}

总结

以上实现完整地完成了登录功能的开发,涵盖了页面转发、数据库访问、业务逻辑处理以及前后端的整合。通过拦截器优化,确保未登录用户无法访问核心功能,进一步提升了系统安全性。

转载地址:http://ulgh.baihongyu.com/

你可能感兴趣的文章
NoSQL数据库概述
查看>>
Notadd —— 基于 nest.js 的微服务开发框架
查看>>
NOTE:rfc5766-turn-server
查看>>
Notepad ++ 安装与配置教程(非常详细)从零基础入门到精通,看完这一篇就够了
查看>>
Notepad++在线和离线安装JSON格式化插件
查看>>
notepad++最详情汇总
查看>>
notepad++正则表达式替换字符串详解
查看>>
notepad如何自动对齐_notepad++怎么自动排版
查看>>
Notes on Paul Irish's "Things I learned from the jQuery source" casts
查看>>
Notification 使用详解(很全
查看>>
NotImplementedError: Cannot copy out of meta tensor; no data! Please use torch.nn.Module.to_empty()
查看>>
NotImplementedError: Could not run torchvision::nms
查看>>
nova基于ubs机制扩展scheduler-filter
查看>>
Now trying to drop the old temporary tablespace, the session hangs.
查看>>
nowcoder—Beauty of Trees
查看>>
np.arange()和np.linspace()绘制logistic回归图像时得到不同的结果?
查看>>
np.power的使用
查看>>
NPM 2FA双重认证的设置方法
查看>>
npm build报错Cannot find module ‘webpack/lib/rules/BasicEffectRulePlugin‘解决方法
查看>>
npm build报错Cannot find module ‘webpack‘解决方法
查看>>