基于SSH的酒店管理系统拥有三种角色
管理员:用户管理、房间分类管理、房间信息管理、开房管理、退房管理、开房和预订记录查询等
前台:房间分类管理、房间信息管理、开房管理、退房管理等
用户:预订房间、查看预订记录、修改个人信息等
酒店管理系统是一种专门设计用于帮助酒店管理日常运营的软件系统。该系统通常包括预订管理、客房分配、客户信息管理、账单结算、库存管理和员工排班等功能。通过酒店管理系统,员工可以轻松地处理客人的预订请求,检查客房可用性,并实时更新客房状态。此外,系统还能够跟踪客户信息和偏好,从而提供更个性化的服务。对于酒店财务管理方面,系统也能够有效地管理账单和支付流程,最大限度地减少错误和延误。库存管理功能有助于确保酒店的各种物品充足,并在需要时及时补充。最后,酒店管理系统还能协助管理员工排班和考勤,以确保酒店的各项工作都能有条不紊地进行。这些功能共同帮助酒店提高效率、优化客户体验,并实现良好的经营管理。
后端框架:struts+spring+hibernate
前端技术:jsp、css、JavaScript、JQuery
SSH框架(Struts+Spring+Hibernate)是一种广泛应用的Java企业级开发框架组合,它将Struts、Spring和Hibernate三个优秀的框架有机地结合在一起,提供了一套完整的解决方案,可以帮助开发人员快速构建可扩展、可维护的Java应用程序。
MySQL是一款Relational Database Management System,直译过来的意思就是关系型数据库管理系统,MySQL有着它独特的特点,这些特点使他成为目前最流行的RDBMS之一,MySQL想比与其他数据库如ORACLE、DB2等,它属于一款体积小、速度快的数据库,重点是它符合本次毕业设计的真实租赁环境,拥有成本低,开发源码这些特点,这也是选择它的主要原因。
DBPool
jdbc:mysql://127.0.0.1:3306/jiudian_db?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true
com.mysql.cj.jdbc.Driver
100
30000
20
select sysdate from dual
//登入请求
public String login() throws IOException {
HttpServletRequest request = ServletActionContext.getRequest();
String username = request.getParameter("username");
String password = request.getParameter("password");
String role = request.getParameter("role");
User user = userDao.selectBean(" where username = '" + username
+ "' and password= '" + password + "' and role= "+role+" and userlock=0 ");
if (user != null) {
HttpSession session = request.getSession();
session.setAttribute("user", user);
this.setUrl("index.jsp");
return "redirect";
} else {
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("utf-8");
response.setContentType("text/html; charset=utf-8");
response
.getWriter()
.print(
"");
}
return null;
}
//用户退出
public String loginout() {
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession session = request.getSession();
session.removeAttribute("user");
this.setUrl("login.jsp");
return SUCCESS;
}
//跳转到修改密码页面
public String changepwd() {
this.setUrl("user/password.jsp");
return SUCCESS;
}
//修改密码操作
public void changepwd2() throws IOException {
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession session = request.getSession();
User u = (User)session.getAttribute("user");
String password1 = request.getParameter("password1");
String password2 = request.getParameter("password2");
User bean = userDao.selectBean(" where username= '"+u.getUsername()+"' and password= '"+password1+"' and userlock=0");
if(bean!=null){
bean.setPassword(password2);
userDao.updateBean(bean);
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("utf-8");response.setContentType("text/html; charset=utf-8");
response
.getWriter()
.print(
"");
}else{
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("utf-8");response.setContentType("text/html; charset=utf-8");
response
.getWriter()
.print(
"");
}
}
基于SSH的酒店管理系统