赞
踩
源码获取:俺的博客首页 "资源" 里下载!
项目介绍
Springboot餐厅点餐系统分为前后台,前台顾客可以进行点餐,后台可以由经理、收银员、厨师、服务员等角色登录;
前台主要功能如下:
桌位选择、菜品选择、提交菜单等功能;
后台主要功能如下:
主页控制台
员工列表:员工查询、新增、编辑、删除;
会员管理:会员列表、会员类型列表;
菜谱管理:菜品列表、种类列表;
订单管理:订单列表;
销售管理:销售统计、销量统计、交易记录;
制菜上菜管理:制菜任务列表、上菜任务列表、桌位上菜情况列表;
桌位管理:桌位列表;
环境需要
1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS;
4.数据库:MySql 5.7/8.0版本均可;
5.是否Maven项目:是;
技术栈
后端:SpringBoot+Mybaits
前端:HTML+css+js+layui+Echarts
使用说明
项目运行:
1. 使用Navicat或者其它工具,在mysql中创建对应sql文件名称的数据库,并导入项目的sql文件;
2. 使用IDEA/Eclipse/MyEclipse导入项目,导入成功后请执行maven clean;maven install命令,然后运行;
3. 将项目中application.yml配置文件中的数据库配置改为自己的配置;
4. 控制台提示运行成功后再运行前端项目;
5. 运行项目,在浏览器中输入地址
后台登录地址:http://localhost:8181/restaurant/sysuser/login.html
前台点餐登录地址:http://localhost:8181/restaurant/guest/desklist.html
经理测试号 账号 18384623911 密码123456
收银员测试号 账号 18384623912 密码 123456
厨师测试号 账号 18384623913 密码 123456
服务员 账号 18384623914 密码 123456
注意事项:
为防止项目运行后图片找不到,请将“images”文件夹中的“restaurant”文件夹放到D盘根目录。如果想放到其他盘,请修改application.yml配置文件中对应路径
-
- /**
- * 后台登陆
- */
- @Controller
- @RequestMapping("")
- public class LoginController {
-
- @Autowired
- UserService userService;
-
- @RequestMapping(value="/login",method=RequestMethod.POST)
- public String login(Model model, String name, String password){//throws ParseException
- Subject subject = SecurityUtils.getSubject();
- UsernamePasswordToken token = new UsernamePasswordToken(name,password);
- try {
- subject.login(token);
- User us = userService.getByName(name);
- String lastLoginTime = "";
- if(us!=null){
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- //上次时间
- Date time = us.getLasttime();
- lastLoginTime = sdf.format(time);
- //新时间
- String format = sdf.format(new Date());
- //string转date 不处理时间格式会不理想
- ParsePosition pos = new ParsePosition(0);
- Date strtodate = sdf.parse(format, pos);
- us.setLasttime(strtodate);
- userService.update(us);
- }
- if (us.getStatus()==1){
- Session session=subject.getSession();
- session.setAttribute("subject", subject);
- session.setAttribute("lastLoginTime",lastLoginTime);
- return "redirect:index";
- }else {
- model.addAttribute("error", "账号已被停用!");
- return "/login";
- }
-
- } catch (AuthenticationException e) {
- model.addAttribute("error", "验证失败!");
- return "/login";
- }
- }
-
-
- }
-
- /**
- * 订单模块controller
- */
- @Controller
- @RequestMapping("/order")
- public class OrderController {
-
- @Autowired
- OrderService orderService;
- @Autowired
- OrderItemService orderItemService;
-
- /**
- * 所有订单
- * @param model
- * @param page
- * @return
- */
- @RequestMapping("/list")
- public String list(Model model, Page page){
- PageHelper.offsetPage(page.getStart(),page.getCount());
-
- List<Order> os= orderService.list();
-
- int total = (int) new PageInfo<>(os).getTotal();
- page.setTotal(total);
- //为订单添加订单项数据
- orderItemService.fill(os);
-
- model.addAttribute("os", os);
- model.addAttribute("page", page);
- model.addAttribute("totals", total);
-
- return "ordermodule/order-list";
- }
-
- /**
- * 订单发货
- * @param o
- * @return
- */
- @RequestMapping("/orderDelivery")
- public String delivery(Order o){
- o.setStatus(2);
- orderService.update(o);
- return "redirect:list";
- }
-
- /**
- * 查看当前订单的订单项
- * @param oid
- * @param model
- * @return
- */
- @RequestMapping("/seeOrderItem")
- public String seeOrderItem(int oid,Model model){
- Order o = orderService.get(oid);
- orderItemService.fill(o);
- model.addAttribute("orderItems",o.getOrderItems());
- model.addAttribute("total",o.getOrderItems().size());
- model.addAttribute("totalPrice",o.getTotal());
- return "ordermodule/orderItem-list";
- }
-
- }
-
- /**
- * 管理员controller
- */
- @Controller
- @RequestMapping("/config")
- public class UserController {
- @Autowired
- UserRoleService userRoleService;
- @Autowired
- UserService userService;
- @Autowired
- RoleService roleService;
-
-
- @RequestMapping("/enableStatus")
- @ResponseBody
- public String enableStatus(@RequestParam(value = "name") String name){
- return userService.enableStatus(name);
- }
-
- @RequestMapping("/stopStatus")
- @ResponseBody
- public String stopStatus(@RequestParam(value = "name") String name){
- return userService.stopStatus(name);
- }
-
- @RequestMapping("/adminAdd")
- public String adminadd(Model model){
- List<Role> list = roleService.list();
- model.addAttribute("rolelist",list);
- return "syspage/admin-add";
- }
-
- @RequestMapping("/listUser")
- public String list(Model model, Page page){
-
- PageHelper.offsetPage(page.getStart(),page.getCount());//分页查询
- List<User> us= userService.list();
- int total = (int) new PageInfo<>(us).getTotal();//总条数
- page.setTotal(total);
-
- model.addAttribute("us", us);//所有用户
- model.addAttribute("total",total);
-
- Map<User,List<Role>> user_roles = new HashMap<>();
- //每个用户对应的权限
- for (User user : us) {
- List<Role> roles=roleService.listRoles(user);
- user_roles.put(user, roles);
- }
- model.addAttribute("user_roles", user_roles);
-
- return "syspage/admin-list";
- }
-
- /**
- * 修改管理员角色
- * @param model
- * @param id
- * @return
- */
- @RequestMapping("/editUser")
- public String edit(Model model,Long id){
- List<Role> rs = roleService.list();
- model.addAttribute("rs", rs);
- User user =userService.get(id);
- model.addAttribute("user", user);
- //当前拥有的角色
- List<Role> roles =roleService.listRoles(user);
- model.addAttribute("currentRoles", roles);
-
- return "syspage/admin-edit";
- }
-
- @RequestMapping("deleteUser")
- public String delete(Model model,long id){
- userService.delete(id);
- return "redirect:listUser";
- }
-
- @RequestMapping("updateUser")
- public String update(User user, long[] roleIds){
- userRoleService.setRoles(user,roleIds);
-
- String password=user.getPassword();
- //如果在修改的时候没有设置密码,就表示不改动密码
- if(user.getPassword().length()!=0) {
- String salt = new SecureRandomNumberGenerator().nextBytes().toString();
- int times = 2;
- String algorithmName = "md5";
- String encodedPassword = new SimpleHash(algorithmName,password,salt,times).toString();
- user.setSalt(salt);
- user.setPassword(encodedPassword);
- }
- else
- user.setPassword(null);
-
- userService.update(user);
-
- return "redirect:listUser";
-
- }
-
- @RequestMapping("addUser")
- public String add(User user,long[] roleIds){
-
- String salt = new SecureRandomNumberGenerator().nextBytes().toString();//生成随机数
- int times = 2;
- String algorithmName = "md5";
-
- String encodedPassword = new SimpleHash(algorithmName,user.getPassword(),salt,times).toString();
-
- User u = new User();
- u.setName(user.getName());
- u.setPassword(encodedPassword);
- u.setSalt(salt);
- u.setStatus(1);
- u.setAddress(user.getAddress());
- u.setPhone(user.getPhone());
- userService.add(u);
-
- userRoleService.setRoles(u,roleIds);
-
- return "redirect:listUser";
- }
-
- }
源码获取:俺的博客首页 "资源" 里下载!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。