JavaWeb酒店管理系统

  酒店管理系统   

一、项目介绍

1、项目用到的技术栈

  • 开发工具:idea
  • 语言:java、js、html+ajax
  • 数据库:MySQL
  • 服务器:Tomcat
  • 框架:mybatis、jQuery

2、项目实现功能

  • 管理员和用户登录和退出功能以及用户注册功能(根据不同的账号密码进入不同的页面,注册页面以及登录都有校验)
  • 用户可以预定房间,可以查看预定完房间的基本信息
  • 管理员和用户可以查看个人信息,并且可以修改个人信息(修改时支持信息回显)
  • 管理员和用户可以通过模糊查询和多条件查询
  • 管理员可以对房间进行增删改查(增删房型,增删改查房间)
  • 所有删除均使用逻辑删除(修改字段即可)

二、项目展示

1、用户和管理员登录界面以及用户注册界面

(1)用户登录

(2)管理员登录界面

 (3)用户注册界面

 2、用户可实现功能

(1)用户界面首页

 (2)用户预定房间

 (3)用户个人订单(房间预定时间过期显示已超时)

(4)用户个人信息以及修改个人信息(修改时信息回显)

 

 3、管理员可实现功能   

(1)管理员界面首页           

(2)管理员增加新房型

 (3)管理员查看顾客信息   

 (4)管理员查看顾客预定房间信息

(5)管理员个人信息及修改个人信息(修改时信息回显)

   

                                                                                                                三、项目代码 

(1)项目基本结构

 

(2)数据库表

(3)Servlet层中loginServlet代码                                                                                 

package com.servlet;

import com.alibaba.fastjson.JSON;
import com.bean.Admin;
import com.bean.Customer;
import com.service.AdminService;
import com.service.CustomerService;
import com.util.CheckCodeUtil;

import javax.servlet.ServletOutputStream;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.nio.charset.StandardCharsets;
import java.util.Enumeration;
import java.util.List;

@WebServlet("/login/*")
public class LoginServlet extends BaseServlet {

    private CustomerService serviceCustomer = new CustomerService();
    private AdminService serviceAdmin = new AdminService();

    /**
     * 顾客/用户登录
     *
     * @param req
     * @param res
     * @throws Exception
     */
    public void logCustomer(HttpServletRequest req,HttpServletResponse res) throws Exception {

        // 解决 get 中文乱码问题
        String username = req.getParameter("username");
        username = new String(username.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8);
        // 获取用户名和密码
        String password = req.getParameter("password");
        // 调用 service 注册
        Customer customer = serviceCustomer.login(username,password);
        if (customer != null) {
            // 将登录成功后的user对象存储到session中
            HttpSession session = req.getSession();
            session.setAttribute("customer",customer);
            res.sendRedirect("/room/customerRoomOperate");
        } else {
            req.setAttribute("login_msg","用户名或密码错误");
            req.getRequestDispatcher("/userLogin.jsp").forward(req,res);
        }


    }

    /**
     * 管理员登录
     *
     * @param req
     * @param res
     * @throws Exception
     */

    public void logAdmin(HttpServletRequest req,HttpServletResponse res) throws Exception {
        // 获取用户名和密码
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        // 调用 service 注册
        Admin admin = serviceAdmin.login(username,password);

        if (admin != null) {
            HttpSession session = req.getSession();
            session.setAttribute("admin",admin);
            res.sendRedirect("/room/adminRoomOperate");
        } else {
            req.setAttribute("login_msg","用户名或密码错误");
            req.getRequestDispatcher("/adminLogin.jsp").forward(req,res);
        }
    }

    /**
     * 顾客/用户注册
     *
     * @param req
     * @param res
     * @throws Exception
     */

    public void registerCustomer(HttpServletRequest req,HttpServletResponse res) throws Exception {
        // 解决乱码问题: POST
        req.setCharacterEncoding("UTF-8"); // 设置字符输入流的编码
        // 解决乱码问题: GET
        // String username = req.getParameter("username");
        // new String(username.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8);

        // 获取用户名、密码、性别、电话号、身份证号
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        String gender = req.getParameter("gender");
        String telephone = req.getParameter("telephone");
        String identity = req.getParameter("identity");

        // 调用 service 注册
        Customer customer = new Customer();
        customer.setUsername(username);
        customer.setPassword(password);
        customer.setGender(gender);
        customer.setTelephone(telephone);
        customer.setIdentity(identity);

        // 获取用户输入的验证码
        String checkCode = req.getParameter("checkCode");

        // 获取程序生成的验证码,从 Session 中获取
        HttpSession session = req.getSession();
        String checkCodeGen = (String) session.getAttribute("checkCodeGen");

        // 比对客户输入的验证码和程序生成的验证码
        if (!checkCodeGen.equalsIgnoreCase(checkCode)) { // 不相等时,不允许注册,直接 return ,如果相等,向下执行、
            // 如果比对不成功,返回到注册页面
            req.setAttribute("register_msg","验证码错误");
            req.getRequestDispatcher("/register.jsp").forward(req,res);
            // 不允许注册
            return;
        }
        boolean flag = serviceCustomer.register(customer);

        //  判断注册成功与否
        if (flag && username != "" && password != "" && telephone != "" && identity != "" && gender != "") {
            // 注册成功,跳转登录页面
            req.setAttribute("register_msg","注册成功,请登录");
            req.getRequestDispatcher("/userLogin.jsp").forward(req,res);
        } else {
            // 注册失败,跳转注册页面
            req.setAttribute("register_msg","用户名已存在或者信息没有全部填写");
            req.getRequestDispatcher("/register.jsp").forward(req,res);
        }
    }

    /**
     * 顾客/用户注册时生成验证码
     *
     * @param req
     * @param res
     * @throws Exception
     */

    public void CheckCode(HttpServletRequest req,HttpServletResponse res) throws Exception {

        // 生成验证码
        ServletOutputStream os = res.getOutputStream(); // res 的字节输出流
        String checkCode = CheckCodeUtil.outputVerifyImage(100,50,os,4);

        // 存入 Session 中
        HttpSession session = req.getSession();
        session.setAttribute("checkCodeGen",checkCode);


    }


    /**
     * 查询顾客的个人信息
     *
     * @param req
     * @param res
     * @throws Exception
     */
    public void customerInformation(HttpServletRequest req,HttpServletResponse res) throws Exception {
        int id = Integer.parseInt(req.getParameter("id"));
        Customer customer = serviceCustomer.selectAll(id);
        res.setContentType("text/json;charset=utf-8");
        String jsonString = JSON.toJSONString(customer);
        res.getWriter().write(jsonString);
    }

    /**
     * 查询管理员的个人信息
     *
     * @param req
     * @param res
     * @throws Exception
     */
    public void adminInformation(HttpServletRequest req,HttpServletResponse res) throws Exception {
        int id = Integer.parseInt(req.getParameter("id"));
        Admin admin = serviceAdmin.selectAll(id);
        res.setContentType("text/json;charset=utf-8");
        String jsonString = JSON.toJSONString(admin);
        res.getWriter().write(jsonString);
    }



    /**
     * 修改顾客个人信息
     *
     * @param req
     * @param res
     * @throws Exception
     */
    public void customerRevise(HttpServletRequest req,HttpServletResponse res) throws Exception {

        // 解决乱码问题: GET
        String gender = req.getParameter("gender");
        gender = new String(gender.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8);

        String username = req.getParameter("username");
        username = new String(username.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8);
        String password = req.getParameter("password");
        String telephone = req.getParameter("telephone");
        String identity = req.getParameter("identity");
        int Id = Integer.parseInt(req.getParameter("id"));

        serviceCustomer.revise(username,password,telephone,identity,gender,Id);

        res.setContentType("text/json;charset=utf-8");
        res.getWriter().write("修改成功~");
        res.sendRedirect("http://localhost:8080/userLogin.jsp");
    }


    /**
     * 修改顾客个人信息
     * @param req
     * @param res
     * @throws Exception
     */
    public void adminRevise(HttpServletRequest req,HttpServletResponse res) throws Exception {

        // 解决乱码问题: GET
        String username = req.getParameter("username");
        username = new String(username.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8);
        String password = req.getParameter("password");
        int Id = Integer.parseInt(req.getParameter("id"));

        serviceAdmin.revise(username,Id);

        res.setContentType("text/json;charset=utf-8");
        res.getWriter().write("修改成功~");
        res.sendRedirect("http://localhost:8080/adminLogin.jsp");
    }


    /**
     * 管理员查询所有顾客信息
     * @param req
     * @param res
     * @throws Exception
     */
    public void selectAllCustomer(HttpServletRequest req,HttpServletResponse res) throws Exception {
        List<Customer> customers = serviceCustomer.selectAllCustomer();
        res.setContentType("text/json;charset=utf-8");
        String jsonString = JSON.toJSONString(customers);
        res.getWriter().write(jsonString);
    }


    /**
     * 逻辑删除顾客全部信息
     * @param req
     * @param res
     * @throws Exception
     */
    public void deleteCustomerInformation(HttpServletRequest req,HttpServletResponse res) throws Exception{
        int id = Integer.parseInt(req.getParameter("id"));
        serviceCustomer.deleteCustomerInformation(id);
        res.setContentType("text/json;charset=utf-8");
        res.getWriter().write("删除成功~");
    }


    /**
     * 顾客退出登录
     * @param req
     * @param res
     * @throws Exception
     */
    public void customerLogOut(HttpServletRequest req,HttpServletResponse res) throws Exception{
//        System.out.println(req.getSession().getAttribute("customer").toString());
        req.getSession().removeAttribute("customer");
        res.sendRedirect("/userLogin.jsp");
    }


    /**
     * 管理员退出登录
     * @param req
     * @param res
     * @throws Exception
     */
    public void adminLogOut(HttpServletRequest req,HttpServletResponse res) throws Exception{
//        System.out.println(req.getSession().getAttribute("admin").toString());
        req.getSession().removeAttribute("admin");
        res.sendRedirect("/adminLogin.jsp");
    }



}

下面附上源码,有需要的小伙伴可以下载

链接: https://pan.baidu.com/s/18Nd_HU4GUY4_kito_Mdf7Q?pwd=dzma

提取码: dzma 

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念