• 基于java+ssm+easyui灵悟酒店系统


    ✌博主介绍✌:一个致力于全战开发的代码热爱者

    一、前言介绍:

    酒店管理系统的目标是为用户提供高效的服务,减少手工处理的繁琐与误差,及时准确地反映酒店工作情况、经营信息,从而提高酒店工作质量,获得更好的经济效益,实现客房管理的规范化、自动化。

    二、系统设计:

    2.1 系统整体架构:

    Spring、Mybatis、MySql、easyui、h-ui、Jsp、echars

    2.2 系统功能设计:

    高效的客房预订及订单处理。
    准确无误地记录客人每笔消费信息。
    实时、快速、准确提供客房动态。
    酒店收益的最终统计。
    系统运行稳定可靠、各项维护功能齐全、易于维护。
    简单、友好的操作界面

    三、功能截图:

    3.1 首页:

    在这里插入图片描述

    3.2 用户登陆:

    在这里插入图片描述

    3.2.1 登陆后台:

    在这里插入图片描述

    3.2.2 后台首页:

    在这里插入图片描述

    3.2.3 用户管理:

    在这里插入图片描述

    3.2.4 日志管理:

    在这里插入图片描述

    3.2.5 楼层管理:

    在这里插入图片描述

    3.2.6 房型管理:

    在这里插入图片描述

    3.2.7 房间管理:

    在这里插入图片描述

    3.2.8 客户管理:

    在这里插入图片描述

    3.2.9 预订管理:

    在这里插入图片描述

    3.2.10 入住管理:

    在这里插入图片描述

    四、代码实现:

    import java.util.HashMap;
    import java.util.Map;
    
    import javax.servlet.http.HttpServletRequest;
    
    import org.apache.commons.lang.StringUtils;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestMethod;
    import org.springframework.web.bind.annotation.RequestParam;
    import org.springframework.web.bind.annotation.ResponseBody;
    import org.springframework.web.servlet.ModelAndView;
    
    import com.ischoolbar.programmer.entity.Account;
    import com.ischoolbar.programmer.service.AccountService;
    import com.ischoolbar.programmer.service.RoomTypeService;
    
    /**
     * 前台首页控制器
     * @author ymj
     *
     */
    @RequestMapping("/home")
    @Controller
    public class HomeController {
    	
    	@Autowired
    	private RoomTypeService roomTypeService;
    	@Autowired
    	private AccountService accountService;
    	
    	/**
    	 * 前台首页
    	 * @param model
    	 * @param name
    	 * @return
    	 */
    	@RequestMapping(value="/index",method=RequestMethod.GET)
    	public ModelAndView list(ModelAndView model,
    			@RequestParam(name="name",defaultValue="") String name
    			){
    		Map queryMap = new HashMap();
    		queryMap.put("name", name);
    		queryMap.put("offset", 0);
    		queryMap.put("pageSize", 999);
    		model.addObject("roomTypeList", roomTypeService.findList(queryMap));
    		model.setViewName("home/index/index");
    		model.addObject("kw", name);
    		return model;
    	}
    	
    	/**
    	 * 登录页面
    	 * @param model
    	 * @return
    	 */
    	@RequestMapping(value="/login",method=RequestMethod.GET)
    	public ModelAndView login(ModelAndView model
    			){
    		model.setViewName("home/index/login");
    		return model;
    	}
    	
    	/**
    	 * 注册页面
    	 * @param model
    	 * @return
    	 */
    	@RequestMapping(value="/reg",method=RequestMethod.GET)
    	public ModelAndView reg(ModelAndView model
    			){
    		model.setViewName("home/index/reg");
    		return model;
    	}
    	
    	/**
    	 * 登录信息提交
    	 * @param account
    	 * @return
    	 */
    	@RequestMapping(value="/login",method=RequestMethod.POST)
    	@ResponseBody
    	public Map loginAct(Account account,String vcode,HttpServletRequest request){
    		Map retMap = new HashMap();
    		if(account == null){
    			retMap.put("type", "error");
    			retMap.put("msg", "请填写正确的用户信息!");
    			return retMap;
    		}
    		if(StringUtils.isEmpty(account.getName())){
    			retMap.put("type", "error");
    			retMap.put("msg", "用户名不能为空!");
    			return retMap;
    		}
    		if(StringUtils.isEmpty(account.getPassword())){
    			retMap.put("type", "error");
    			retMap.put("msg", "密码不能为空!");
    			return retMap;
    		}
    		if(StringUtils.isEmpty(vcode)){
    			retMap.put("type", "error");
    			retMap.put("msg", "验证码不能为空!");
    			return retMap;
    		}
    		Object attribute = request.getSession().getAttribute("accountLoginCpacha");
    		if(attribute == null){
    			retMap.put("type", "error");
    			retMap.put("msg", "验证码过期,请刷新!");
    			return retMap;
    		}
    		if(!vcode.equalsIgnoreCase(attribute.toString())){
    			retMap.put("type", "error");
    			retMap.put("msg", "验证码错误!");
    			return retMap;
    		}
    		Account findByName = accountService.findByName(account.getName());
    		if(findByName == null){
    			retMap.put("type", "error");
    			retMap.put("msg", "用户名不存在!");
    			return retMap;
    		}
    		if(!account.getPassword().equals(findByName.getPassword())){
    			retMap.put("type", "error");
    			retMap.put("msg", "密码错误!");
    			return retMap;
    		}
    		if(findByName.getStatus() == -1){
    			retMap.put("type", "error");
    			retMap.put("msg", "该用户已被禁用,请联系管理员!");
    			return retMap;
    		}
    		request.getSession().setAttribute("account", findByName);
    		request.getSession().setAttribute("accountLoginCpacha", null);
    		retMap.put("type", "success");
    		retMap.put("msg", "登录成功!");
    		return retMap;
    	}
    	
    	/**
    	 * 注册信息提交
    	 * @param account
    	 * @return
    	 */
    	@RequestMapping(value="/reg",method=RequestMethod.POST)
    	@ResponseBody
    	public Map regAct(Account account){
    		Map retMap = new HashMap();
    		if(account == null){
    			retMap.put("type", "error");
    			retMap.put("msg", "请填写正确的用户信息!");
    			return retMap;
    		}
    		if(StringUtils.isEmpty(account.getName())){
    			retMap.put("type", "error");
    			retMap.put("msg", "用户名不能为空!");
    			return retMap;
    		}
    		if(StringUtils.isEmpty(account.getPassword())){
    			retMap.put("type", "error");
    			retMap.put("msg", "密码不能为空!");
    			return retMap;
    		}
    		if(StringUtils.isEmpty(account.getMobile())){
    			retMap.put("type", "error");
    			retMap.put("msg", "手机号不能为空!");
    			return retMap;
    		}
    		if(isExist(account.getName())){
    			retMap.put("type", "error");
    			retMap.put("msg", "该用户名已经存在!");
    			return retMap;
    		}
    		if(accountService.add(account) <= 0){
    			retMap.put("type", "error");
    			retMap.put("msg", "注册失败,请联系管理员!");
    			return retMap;
    		}
    		retMap.put("type", "success");
    		retMap.put("msg", "注册成功!");
    		return retMap;
    	}
    	
    	/**
    	 * 退出登录
    	 * @param request
    	 * @return
    	 */
    	@RequestMapping(value="/logout",method=RequestMethod.GET)
    	public String logout(HttpServletRequest request){
    		request.getSession().setAttribute("account", null);
    		return "redirect:login";
    	}
    	
    	private boolean isExist(String name){
    		Account account = accountService.findByName(name);
    		if(account == null)return false;
    		return true;
    	}
    }
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202

    五、论文文档:

    搭建环境
    Tomcat 8.5
    Java 1.8+
    Mysql 5.7
    涉及技术
    Spring、Mybatis、MySql、easyui、h-ui、Jsp、echars

    七、项目总结:

    推荐软件环境版本:jdk 1.8、tomcat 9.0 mysql 5.7

    导入db目录下的数据库文件。
    修改config目录下的配置文件。
    将工程打包,把war包放入tomcat中

    八、源码获取:

    大家点赞、收藏、关注、评论啦 、查看👇🏻👇🏻👇🏻获取联系方式👇🏻👇🏻👇🏻

  • 相关阅读:
    文章接口发布,视频接口发布
    计算机毕业设计之java+springboot基于vue的乐校园二手书交易管理系统
    云原生K8S------K8S管理工具kubectl详解(一)
    第五届全国高校计算机能力挑战赛-程序设计挑战赛(C++)
    rust 笔记 高级错误处理
    Python学习:encode()和decode()方法:字符串编码转换
    性能测试基本流程
    【uni-app从入门到实战】环境搭建和配置学习
    挑战30天学完Python:Day1火力全开-初识Python(含系列大纲)
    冒泡排序 和 选择排序
  • 原文地址:https://blog.csdn.net/niyite/article/details/128086449