• 大小: 12.34MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-29
  • 语言: Java
  • 标签: java  ssh2  酒店管理  

资源简介

本酒店管理系统基于ssh2三大框架,系统包括管理员管理,客户管理,房间管理,订单管理四大模块,能满足酒店管理需要; 内含mysql数据库脚本文件,导入myeclipse部署即可运行。对于开发大型酒店管理或学习ssh框架的开发者来说是很好的借鉴。

资源截图

代码片段和文件信息

package com.integration.action.admin;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionSupport;
import com.integration.entity.Admin;
import com.integration.service.AdminService;
@SuppressWarnings(“serial“)
public class AdminServiceAction extends ActionSupport {
private Admin admin;
private AdminService adminService;
public AdminService getAdminService() {
return adminService;
}
public void setAdminService(AdminService adminService) {
this.adminService = adminService;
}
public Admin getAdmin() {
return admin;
}
public void setAdmin(Admin admin) {
this.admin = admin;
}
@Override
public String execute() throws Exception {
return super.execute();
}
public String login() {
Admin adminLogin = this.adminService.loginAdmin(this.admin);
if (adminLogin != null) {
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession session = request.getSession();
session.setAttribute(“admin“ adminLogin);
return “loginSuc“;
}
return INPUT;
}
public String loginOut() throws Exception {
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession session = request.getSession();
session.removeAttribute(“admin“);
return INPUT;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-12-27 21:24  hotel_system\
     文件        3307  2014-04-15 20:32  hotel_system\.classpath
     文件        1261  2018-04-28 15:07  hotel_system\.project
     目录           0  2012-12-27 21:24  hotel_system\.settings\
     文件         503  2012-11-16 15:53  hotel_system\.settings\.jsdtscope
     文件         512  2014-04-16 17:20  hotel_system\.settings\org.eclipse.core.resources.prefs
     文件         598  2014-04-15 19:49  hotel_system\.settings\org.eclipse.jdt.core.prefs
     文件         469  2012-11-16 15:53  hotel_system\.settings\org.eclipse.wst.common.component
     文件         345  2012-11-16 15:53  hotel_system\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2012-11-16 15:53  hotel_system\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2012-11-16 15:53  hotel_system\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2012-12-27 21:24  hotel_system\WebContent\
     目录           0  2012-12-27 21:24  hotel_system\WebContent\meta-INF\
     文件          39  2012-11-16 15:53  hotel_system\WebContent\meta-INF\MANIFEST.MF
     目录           0  2012-12-27 21:24  hotel_system\WebContent\WEB-INF\
     文件        7963  2014-04-15 20:42  hotel_system\WebContent\WEB-INF\applicationContext.xml
     目录           0  2012-12-27 21:24  hotel_system\WebContent\WEB-INF\lib\
     文件      358273  2012-11-19 10:30  hotel_system\WebContent\WEB-INF\lib\antlr-2.7.2.jar
     文件        4467  2012-11-18 23:58  hotel_system\WebContent\WEB-INF\lib\aopalliance-1.0.jar
     文件      559366  2011-11-19 20:40  hotel_system\WebContent\WEB-INF\lib\commons-collections-3.1.jar
     文件      121757  2012-11-18 23:19  hotel_system\WebContent\WEB-INF\lib\commons-dbcp.jar
     文件       59590  2011-10-25 20:17  hotel_system\WebContent\WEB-INF\lib\commons-fileupload-1.2.2.jar
     文件      159509  2011-11-19 20:31  hotel_system\WebContent\WEB-INF\lib\commons-io-2.0.1.jar
     文件      279193  2011-11-05 21:03  hotel_system\WebContent\WEB-INF\lib\commons-lang-2.5.jar
     文件       60686  2011-10-25 21:29  hotel_system\WebContent\WEB-INF\lib\commons-logging-1.1.1.jar
     文件       62103  2012-11-18 23:19  hotel_system\WebContent\WEB-INF\lib\commons-pool.jar
     文件      313898  2012-11-18 23:22  hotel_system\WebContent\WEB-INF\lib\dom4j-1.6.1.jar
     文件      880993  2012-11-18 23:58  hotel_system\WebContent\WEB-INF\lib\freemarker-2.3.16.jar
     文件      102661  2012-11-18 23:38  hotel_system\WebContent\WEB-INF\lib\hibernate-jpa-2.0-api-1.0.1.Final.jar
     文件     4140193  2012-11-18 17:10  hotel_system\WebContent\WEB-INF\lib\hibernate3.jar
     文件      633312  2012-11-16 14:15  hotel_system\WebContent\WEB-INF\lib\javassist-3.12.0.GA.jar
............此处省略169个文件信息

评论

共有 条评论