Eclipse+Java+Swing+Mysql实现酒店管理系统

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介: Eclipse+Java+Swing+Mysql实现酒店管理系统

一、系统介绍


1.开发环境


开发工具:Eclipse2021


JDK版本:jdk1.8


Mysql版本:8.0.13


2.技术选型

Java+Swing+Mysql


3.系统功能


1.登录系统


2.员工管理


3.顾客管理


4.房间查询(房间添加在数据库里面操作)


5.退换房间


二、系统展示


1.登录系统


6c4a0bab9cc04317ae4b7fc30b9d3510.jpg


2.系统主页


7a4e871dda3e4407b7434baafcbdcc4f.jpg


3.员工管理


591f7402ebff4171bd20e5cb2aa9ebd8.jpg


4.顾客信息添加


75eaee19a69040659b0e04b955640e44.jpg


5.订单详情提交


5b33c20dbca3472abe08b48c959f60fd.jpg


6.房间查询


1b0d557a2f8a4407b9d159bb49729a4b.jpg


7.退换房间


2f905ac1a34b40f8a94f591ceb2a9f4c.jpg


三、部分代码


ClientDao.java

package com.sqc.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import com.sqc.model.Client;
public class ClientDao {
  /**
   * 客户信息增加
   * 
   * @param con
   * @param client
   * @return
   * @throws Exception
   */
  public int add(Connection con, Client client) throws Exception {
    // TODO Auto-generated method stub
    String sql = "insert into tb_client values(?,?,?,?,?)";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, client.getCid());
    pstmt.setString(2, client.getCname());
    pstmt.setString(3, client.getCsex());
    pstmt.setInt(4, client.getCage());
    pstmt.setString(5, client.getCtel());
    return pstmt.executeUpdate();
  }
}

ExRoomDao.java

package com.sqc.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import com.sqc.model.ExRoom;
import com.sqc.util.StringUtil;
public class ExRoomDao {
  /**
   * 订单信息查询
   * 
   * @param con
   * @param exRoom
   * @return
   */
  public ResultSet list(Connection con, ExRoom exRoom) throws Exception {
    // TODO Auto-generated method stub
    StringBuffer sb = new StringBuffer("select oid,cid,rid,ocomedate,odays,oleavedate from tb_order");
    if (StringUtil.isNotEmpty(exRoom.getCid())) {
      sb.append(" and tb_order.cid like'%" + exRoom.getCid() + "%'");
    }
    if (StringUtil.isNotEmpty(exRoom.getRid())) {
      sb.append(" and tb_order.rid like'%" + exRoom.getRid() + "%'");
    }
    PreparedStatement pstmt = con.prepareStatement(sb.toString().replaceFirst("and", "where"));
    return pstmt.executeQuery();
  }
  /**
   * 订单修改
   * 
   * @param con
   * @param exRoom
   * @return
   */
  public int update(Connection con, ExRoom exRoom) throws Exception {
    // TODO Auto-generated method stub
    String sql = "update tb_order set Cid=?,Rid=?,Ocomedate=?,Odays=?,Oleavedate=?";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, exRoom.getCid());
    pstmt.setString(2, exRoom.getRid());
    pstmt.setString(3, exRoom.getOcomedate());
    pstmt.setInt(4, exRoom.getOdays());
    pstmt.setString(5, exRoom.getOleavedate());
    return pstmt.executeUpdate();
  }
  /**
   * 退房事件处理
   * 
   * @param con
   * @param cid
   * @return
   */
  public int delete(Connection con, String cid) throws Exception {
    // TODO Auto-generated method stub
    String sql = "delete from tb_order where cid=?";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, cid);
    return pstmt.executeUpdate();
  }
}

OrderDao.java

package com.sqc.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import com.sqc.model.Client;
import com.sqc.model.Order;
public class OrderDao {
  public int add(Connection con, Order order) throws Exception {
    // TODO Auto-generated method stub
    String sql = "insert into tb_order values(null,?,?,?,?,?)";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, order.getCid());
    pstmt.setString(2, order.getRid());
    pstmt.setString(3, order.getOcomedate());
    pstmt.setInt(4, order.getOdays());
    pstmt.setString(5, order.getOleavedate());
    return pstmt.executeUpdate();
  }
}

StaffDao.java

package com.sqc.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import com.sqc.model.Staff;
import com.sqc.util.StringUtil;
public class StaffDao {
  /**
   * 员工信息添加
   * 
   * @param con
   * @param staff
   * @return
   * @throws Exception
   */
  public int add(Connection con, Staff staff) throws Exception {
    // TODO Auto-generated method stub
    String sql = "insert into tb_staff values(?,?,?,?,?)";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, staff.getSid());
    pstmt.setString(2, staff.getSname());
    pstmt.setString(3, staff.getSsex());
    pstmt.setString(4, staff.getStel());
    pstmt.setString(5, staff.getSjob());
    return pstmt.executeUpdate();
  }
  /**
   * 员工信息查询
   * 
   * @param con
   * @param staff
   * @return
   */
  public ResultSet list(Connection con, Staff staff) throws Exception {
    // TODO Auto-generated method stub
    StringBuffer sb = new StringBuffer("select * from tb_staff");
    if (StringUtil.isNotEmpty(staff.getSid())) {
      sb.append(" and tb_staff.sid like '%" + staff.getSid() + "%'");
    }
    PreparedStatement pstmt = con.prepareStatement(sb.toString().replaceFirst("and", "where"));
    return pstmt.executeQuery();
  }
  /**
   * 员工信息修改
   * 
   * @param con
   * @param staff
   * @return
   * @throws Exception
   */
  public int update(Connection con, Staff staff) throws Exception {
    // TODO Auto-generated method stub
    String sql = "update tb_staff set sid=?,sname=?,ssex=?,stel=?,sjob=? where sid=" + staff.getSid();
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, staff.getSid());
    pstmt.setString(2, staff.getSname());
    pstmt.setString(3, staff.getSsex());
    pstmt.setString(4, staff.getStel());
    pstmt.setString(5, staff.getSjob());
    return pstmt.executeUpdate();
  }
  /**
   * 员工信息删除
   * 
   * @param con
   * @param sid
   * @return
   */
  public int delete(Connection con, String sid) throws Exception {
    // TODO Auto-generated method stub
    String sql = "delete from tb_staff where sid=?";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, sid);
    return pstmt.executeUpdate();
  }
}

UserDao.java

package com.sqc.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import com.sqc.model.User;
/**
 * 用户Dao类
 * 
 * @author XXX
 *
 */
public class UserDao {
  /**
   * 登录验证
   * 
   * @param con
   * @param user
   * @return
   * @throws Exception
   */
  public User login(Connection con, User user) throws Exception {
    User resultUser = null;
    String sql = "select * from tb_login where userName = ? and password = ?";
    PreparedStatement pstmt = con.prepareStatement(sql);
    pstmt.setString(1, user.getUserName());
    pstmt.setString(2, user.getPassword());
    ResultSet rs = pstmt.executeQuery();
    if (rs.next()) {
      resultUser = new User();
      resultUser.setUserName(rs.getString("userName"));
      resultUser.setPassword(rs.getString("password"));
    }
    return resultUser;
  }
}


四、其他


1.更多系统


更多JavaSwing系统请关注专栏。


https://blog.csdn.net/helongqiang/category_6229101.html

https://blog.csdn.net/helongqiang/category_6229101.html


更多JavaWeb系统请关注专栏。


https://blog.csdn.net/helongqiang/category_10020130.html

https://blog.csdn.net/helongqiang/category_10020130.html


2.源码下载

Java+Swing+Mysql实现酒店管理系统


3.运行项目

请点击以下链接,部署你的项目。


Eclipse如何导入JavaSwing项目超详细图文教程


Java+Swing+Mysql实现酒店管理系统


4.备注

如有侵权请联系我删除。


5.支持博主

如果您觉得此文对您有帮助,请点赞加关注加收藏。祝您生活愉快!


相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
3月前
|
安全 关系型数据库 MySQL
如何将数据从MySQL同步到其他系统
【10月更文挑战第17天】如何将数据从MySQL同步到其他系统
520 0
|
2月前
|
Java Android开发
Eclipse Java 构建路径
Eclipse Java 构建路径
47 3
|
2月前
|
Java Android开发
Eclipse 创建 Java 项目
Eclipse 创建 Java 项目
57 4
|
2月前
|
Java Android开发
Eclipse 创建 Java 接口
Eclipse 创建 Java 接口
41 1
|
2月前
|
Java Android开发
Eclipse 创建 Java 包
Eclipse 创建 Java 包
41 1
|
2月前
|
关系型数据库 MySQL Linux
Linux系统如何设置自启动服务在MySQL数据库启动后执行?
【10月更文挑战第25天】Linux系统如何设置自启动服务在MySQL数据库启动后执行?
188 3
|
2月前
|
Java Android开发
Eclipse 创建 Java 类
Eclipse 创建 Java 类
36 0
|
3月前
|
存储 关系型数据库 MySQL
PACS系统 中 dicom 文件在mysql 8.0 数据库中的 存储和读取(pydicom 库使用)
PACS系统 中 dicom 文件在mysql 8.0 数据库中的 存储和读取(pydicom 库使用)
57 2
|
3月前
|
Java 关系型数据库 MySQL
【编程基础知识】Eclipse连接MySQL 8.0时的JDK版本和驱动问题全解析
本文详细解析了在使用Eclipse连接MySQL 8.0时常见的JDK版本不兼容、驱动类错误和时区设置问题,并提供了清晰的解决方案。通过正确配置JDK版本、选择合适的驱动类和设置时区,确保Java应用能够顺利连接MySQL 8.0。
335 1
|
3月前
|
Ubuntu 关系型数据库 MySQL
Linux系统MySQL安装
【10月更文挑战第19天】本文介绍了在 Linux 系统上安装 MySQL 的步骤,包括安装前准备、安装 MySQL、启动 MySQL 服务、配置 MySQL 以及验证安装。适用于 Ubuntu/Debian 和 CentOS/Fedora 系统,提供了详细的命令示例。
487 1