当前位置:   article > 正文

瑞吉外卖项目 基于spring Boot+mybatis-plus开发 超详细笔记,有源码链接_瑞吉外卖是基于什么开发的

瑞吉外卖是基于什么开发的

本项目是基于自学b站中 黑马程序员 的瑞吉外卖项目:视频链接:

黑马程序员Java项目实战《瑞吉外卖》,轻松掌握springboot + mybatis plus开发核心技术的真java实战项目_哔哩哔哩_bilibilihttps://www.bilibili.com/video/BV13a411q753?spm_id_from=333.337.search-card.all.click这篇博客是记录自己学习该项目的markdown笔记;并且自己把视频中一些没实现的功能给实现了;本人技术可能不到位,笔记仅供参考学习使用

本人自己把视频中老师没讲的一些功能给实现了,比如,后台按条件查询客户订单,用户个人查询自己的订单,菜品,套餐的启售,停售,购物车中菜品或者是套餐数量减少,后台套餐的修改。代码不一定规范,但是功能是没问题的!!!

项目中的资料下载链接:(从黑马公众号获取到的最初状态的源码,后面自己补充了一些课程没讲的功能,功能的实现代码在我博客的笔记中有)

链接:https://pan.baidu.com/s/1cdHI5cDjyHKZ4_0GmIevnQ 
提取码:668a

目录

一、项目背景介绍 

二、软件开发整体介绍

三、开发环境的搭建

①数据库环境的搭建

②maven项目搭建

③导入前端文件

四、后台登陆功能开发

①需求分析:

②代码开发:

实体类和mapper的开发

service

封装返回的结果类

controller

③功能测试:

五、后台系统退出功能

六、员工管理模块

完善登陆功能

新增员工

全局异常捕获

员工信息分页查询

启用/禁用员工账号

使用自定义消息转换器

编辑员工信息

七、菜品分类管理

公共字段填充(这里有重点)

新增分类

菜品类的分页

删除分类(这里有注意点)

修改分类

八、菜品管理的业务功能

文件的上传和下载(重点)

新增菜品(业务的实现是重点)

接收页面提交的数据(涉及两张表)

菜品信息分页查询(功能完善里面的代码要熟悉,有集合泛型的转换,对象copy)

修改菜品(回显和保存修改都是两张表)

菜品信息的回显:

保存修改:(重点)

需要自己单独实现的功能

九、套餐管理

添加菜品数据回显

保存添加套餐(理解里面的关系有点困难)

套餐信息分页查询

删除套餐

需要自己单独实现的功能

套餐管理的启售,停售

套餐管理的修改

后台订单展示和查询

手机端开发

一、项目背景介绍 

技术选型:

 

 

二、软件开发整体介绍

三、开发环境的搭建

①数据库环境的搭建

1.创建数据库:

2.导入表结构,直接运行外部SQL文件;

 

数据表的说明:

序号表名说明
1employee员工表
2category菜品和套餐分类表
3dish菜品表
4setmeal套餐表
5setmeal_dish套餐菜品关系表
6dish_flavor菜品口味关系表
7user用表(c端)
8address_book地址薄表
9shopping_cart购物车表
10orders订单表
11orders_detail订单明细表

②maven项目搭建

 1.创建一个maven项目

注意:创建maven项目后,一定要检查项目的编码,maven仓库的配置,jdk的配置等;

 2.导入pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.6.6</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.itheima</groupId>
  13. <artifactId>reggie_take_out</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. <scope>compile</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-boot-starter</artifactId>
  37. <version>3.4.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <version>1.18.20</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>1.2.76</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>commons-lang</groupId>
  51. <artifactId>commons-lang</artifactId>
  52. <version>2.6</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>mysql</groupId>
  56. <artifactId>mysql-connector-java</artifactId>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>druid-spring-boot-starter</artifactId>
  62. <version>1.1.23</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. <version>2.6.6</version>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>

 3.创建application.yml文件:

  1. server:
  2. port: 8080
  3. spring:
  4. application:
  5. # 应用的名称,选择性配置
  6. name: reggie_take_out
  7. datasource:
  8. druid:
  9. driver-class-name: com.mysql.cj.jdbc.Driver
  10. url: jdbc:mysql://localhost:3306/reggie?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
  11. username: root
  12. password: root
  13. mybatis-plus:
  14. configuration:
  15. #在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射
  16. map-underscore-to-camel-case: true
  17. # 把SQL的查询的过程输出到控制台
  18. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  19. global-config:
  20. db-config:
  21. id-type: ASSIGN_ID

 3.创建Boot程序入口

  1. package com.itheima.reggie;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. /**
  6. * @author LJM
  7. * @create 2022/4/14
  8. */
  9. @Slf4j
  10. @SpringBootApplication
  11. @ServletComponentScan
  12. public class ReggieApplication {
  13. public static void main(String[] args) {
  14. SpringApplication.run(ReggieApplication.class,args);
  15. log.info("项目启动成功...");
  16. }
  17. }

4.运行Boot程序,看是否成功;

③导入前端文件

注意前端文件的位置,在Boot项目中,前台默认就只能访问 resource目录下的static和template文件夹下的文件;所以如果要使用这种方式,直接创建一个static目录就行,然后把这些前端资源放在这个static目录下就行;

如果你不想把前端文件放在这两个默认的文件夹下,那么就可以自己定义mvc的支持,这里我们使用的就是这方式;(多学习一种定义的方法,以后自定义映射的时候可以使用)

  1. package com.itheima.reggie.config;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
  5. import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
  6. /**
  7. * @author LJM
  8. * @create 2022/4/14
  9. */
  10. @Slf4j
  11. @Configuration
  12. public class WebMvcConfig extends WebMvcConfigurationSupport {
  13. /**
  14. * 设置资源映射
  15. * @param registry
  16. * 前面表示的是浏览器访问的请求
  17. * 后面表示的是要把请求映射到哪里去
  18. */
  19. @Override
  20. protected void addResourceHandlers(ResourceHandlerRegistry registry) {
  21. log.info("开始进行静态资源映射");
  22. registry.addResourceHandler("/backend/**").addResourceLocations("classpath:/backend/");
  23. registry.addResourceHandler("/front/**").addResourceLocations("classpath:/front/");
  24. }
  25. }

记得在启动程序加上@ServletComponentScan这个注解,否则这个配置类不会生效;

四、后台登陆功能开发

①需求分析:

需求分析是通过产品原型来进行的,这个是项目经理负责的;

②代码开发:

前端页面访问地址:http://localhost:8080/backend/page/login/login.html

 查看登陆请求信息:点击登录会发送登录请求:http://localhost:8080/employee/login

我们去后端进行代码开发相关的接口就行;

创建相关的包:

实体类和mapper的开发

在entity导入实体类employee类;

使用mybatis-plus提供的自动生成mapper:

  1. package com.itheima.reggie.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.itheima.reggie.entity.Employee;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface EmployeeMapper extends BaseMapper<Employee> {
  7. }

 使用快捷键 Ctrl + f3 就可以看见mybatis-plus 帮我们定义的mapper接口:

service

  1. package com.itheima.reggie.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.itheima.reggie.entity.Employee;
  4. public interface EmployeeService extends IService<Employee> {
  5. }
  1. package com.itheima.reggie.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.itheima.reggie.entity.Employee;
  4. import com.itheima.reggie.mapper.EmployeeMapper;
  5. import org.springframework.stereotype.Service;
  6. /**
  7. * @author LJM
  8. * @create 2022/4/15
  9. */
  10. @Service //这两个泛型一个是实体类对应的mapper,一个是实体类
  11. public class EmployeeServiceImpl extends ServiceImpl<EmployeeMapper,Employee> implements EmployeeService {
  12. }

查看帮我们实现的方法:

封装返回的结果类

创建一个新的包,common,用来存放共同使用的类,把这个返回结果类放入这个公共包;

  1. package com.itheima.reggie.common;
  2. import lombok.Data;
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. /**
  6. * 通用返回结果类,服务端响应的数据最终都会封装成此对象
  7. * @param <T>
  8. */
  9. @Data
  10. public class R<T> {
  11. private Integer code; //编码:1成功,0和其它数字为失败
  12. private String msg; //错误信息
  13. private T data; //数据
  14. private Map map = new HashMap(); //动态数据
  15. public static <T> R<T> success(T object) {
  16. R<T> r = new R<T>();
  17. r.data = object;
  18. r.code = 1;
  19. return r;
  20. }
  21. public static <T> R<T> error(String msg) {
  22. R r = new R();
  23. r.msg = msg;
  24. r.code = 0;
  25. return r;
  26. }
  27. public R<T> add(String key, Object value) {
  28. this.map.put(key, value);
  29. return this;
  30. }
  31. }

controller

登陆的具体流程图:在平板上,记得传过来。

先处理业务逻辑,然后再编码!!!

  1. 1、将页面提交的密码password进行md5加密处理
  2. 2、根据页面提交的用户名username查询数据库
  3. 3、如果没有查询到则返回登录失败结果
  4. 4、密码比对,如果不一致则返回登录失败结果
  5. 5、查看员工状态,如果为已禁用状态,则返回员工已禁用结果
  6. 6、登录成功,将员工id存入Session并返回登录成功结果
  1. package com.itheima.reggie.controller;
  2. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  3. import com.itheima.reggie.common.R;
  4. import com.itheima.reggie.entity.Employee;
  5. import com.itheima.reggie.service.EmployeeService;
  6. import lombok.extern.slf4j.Slf4j;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.util.DigestUtils;
  9. import org.springframework.web.bind.annotation.PostMapping;
  10. import org.springframework.web.bind.annotation.RequestBody;
  11. import org.springframework.web.bind.annotation.RequestMapping;
  12. import org.springframework.web.bind.annotation.RestController;
  13. import javax.servlet.http.HttpServletRequest;
  14. import java.nio.charset.StandardCharsets;
  15. /**
  16. * @author LJM
  17. * @create 2022/4/15
  18. */
  19. @RestController
  20. @Slf4j
  21. @RequestMapping("/employee")
  22. public class EmployeeController {
  23. @Autowired
  24. private EmployeeService employeeService;
  25. @PostMapping("/login") //使用restful风格开发
  26. public R<Employee> login(HttpServletRequest request, @RequestBody Employee employee){//接收前端的json数据,这个json数据是在请求体中的
  27. //这里为什么还有接收一个request对象的数据?
  28. //登陆成功后,我们需要从请求中获取员工的id,并且把这个id存到session中,这样我们想要获取登陆对象的时候就可以随时获取
  29. //1、将页面提交的密码password进行md5加密处理
  30. String password = employee.getPassword();//从前端用户登录拿到的用户密码
  31. password = DigestUtils.md5DigestAsHex(password.getBytes());//对用户密码进行加密
  32. //2、根据页面提交的用户名username查询数据库
  33. LambdaQueryWrapper<Employee> queryWrapper = new LambdaQueryWrapper<>();
  34. queryWrapper.eq(Employee::getUsername,employee.getUsername());
  35. //在设计数据库的时候我们对username使用了唯一索引,所以这里可以使用getOne方法
  36. Employee emp = employeeService.getOne(queryWrapper);//这里的切入Wrapper是什么?
  37. //3、如果没有查询到则返回登录失败结果
  38. if (emp == null ){
  39. return R.error("用户不存在");
  40. }
  41. //4、密码比对,如果不一致则返回登录失败结果
  42. if (!emp.getPassword().equals(password)){
  43. //emp.getPassword()用户存在后从数据库查询到的密码(加密状态的) password是前端用户自己输入的密码(已经加密处理)
  44. return R.error("密码不正确");
  45. }
  46. //5、查看员工状态,如果为已禁用状态,则返回员工已禁用结果
  47. if (emp.getStatus() == 0){
  48. return R.error("账号已禁用");
  49. }
  50. //6、登录成功,将员工id存入Session并返回登录成功结果
  51. request.getSession().setAttribute("employee",emp.getId());
  52. //把从数据库中查询到的用户返回出去
  53. return R.success(emp);
  54. }
  55. }

③功能测试:

使用debug的形式启动项目,然后在浏览器访问:http://localhost:8080/backend/page/login/login.html

然后打开浏览器的f12,查看具体的请求情况:

在后台查看debug的状态:

 运行成功后:(这个密码是123456),数据存在了浏览器中:这个代码是吧返回的数据保持在浏览器中:

localStorage.setItem('userInfo',JSON.stringify(res.data))

在浏览器我们可以看见,key为userInfo,value为我们返回的数据;

五、后台系统退出功能

点击退出按钮,发送退出的请求:http://localhost:8080/employee/logout

 后端代码处理:

①在controller中创建对应的处理方法来接受前端的请求,请求方式为post;

②清理session中的用户id

③返回结果(前端页面会进行跳转到登录页面)

前端代码,也要把浏览器中的数据给清除;

  1. /**
  2. * 退出功能
  3. * ①在controller中创建对应的处理方法来接受前端的请求,请求方式为post;
  4. * ②清理session中的用户id
  5. * ③返回结果(前端页面会进行跳转到登录页面)
  6. * @return
  7. */
  8. @PostMapping("/logout")
  9. public R<String> logout(HttpServletRequest request){
  10. //清理session中的用户id
  11. request.getSession().removeAttribute("employee");
  12. return R.success("退出成功");
  13. }

功能测试:先登陆,然后退出即可;看浏览器中的数据是否会被清除;

六、员工管理模块

完善登陆功能

问题分析:前面的登陆存在一个问题,如果用户不进行登陆,直接访问系统的首页,照样可以正常访问,这种设计是不合理的,我们希望看到的效果是只有完成了登陆后才可以访问系统中的页面,如果没有登陆则跳转到登陆页面;

那么如何实现?

答案就是使用过滤器或者是拦截器,在拦截器或者是过滤器中判断用户是否已经完成了登陆,如果没有登陆则跳转到登陆页面;

代码实现:这里使用的是过滤器;

①创建自定义过滤器LongCheckFilter

  1. package com.itheima.reggie.filter;
  2. import lombok.extern.slf4j.Slf4j;
  3. import javax.servlet.*;
  4. import javax.servlet.annotation.WebFilter;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import java.io.IOException;
  8. /**
  9. * @author LJM
  10. * @create 2022/4/15
  11. * 检查用户是否已经完成登陆
  12. * filterName过滤器名字
  13. * urlPatterns拦截的请求,这里是拦截所有的请求
  14. *
  15. */
  16. @WebFilter(filterName = "LongCheckFilter",urlPatterns = "/*")
  17. @Slf4j
  18. public class LongCheckFilter implements Filter {
  19. @Override
  20. public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
  21. HttpServletRequest request = (HttpServletRequest) servletRequest;
  22. HttpServletResponse response = (HttpServletResponse) servletResponse;
  23. log.info("拦截到的请求:{}",request.getRequestURL());
  24. //对请求进行放行
  25. filterChain.doFilter(request,response);
  26. }
  27. }

②在启动类加上注解@ServletComponentScan

然后先测试一下过滤器能不能生效,具体的逻辑等下再书写;发送请求,看后台能不能打印拦截的信息:

 ③完善过滤器的处理逻辑

 具体逻辑的代码实现:

  1. package com.itheima.reggie.filter;
  2. import com.alibaba.fastjson.JSON;
  3. import com.itheima.reggie.common.R;
  4. import lombok.extern.slf4j.Slf4j;
  5. import org.springframework.util.AntPathMatcher;
  6. import javax.servlet.*;
  7. import javax.servlet.annotation.WebFilter;
  8. import javax.servlet.http.HttpServletRequest;
  9. import javax.servlet.http.HttpServletResponse;
  10. import java.io.IOException;
  11. /**
  12. * @author LJM
  13. * @create 2022/4/15
  14. * 检查用户是否已经完成登陆
  15. * filterName过滤器名字
  16. * urlPatterns拦截的请求,这里是拦截所有的请求
  17. *
  18. */
  19. @WebFilter(filterName = "LongCheckFilter",urlPatterns = "/*")
  20. @Slf4j
  21. public class LongCheckFilter implements Filter {
  22. //路径匹配器,支持通配符
  23. public static final AntPathMatcher PATH_MATCHER = new AntPathMatcher();
  24. @Override
  25. public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
  26. //对请求和响应进行强转,我们需要的是带http的
  27. HttpServletRequest request = (HttpServletRequest) servletRequest;
  28. HttpServletResponse response = (HttpServletResponse) servletResponse;
  29. //1、获取本次请求的URI
  30. String requestURL = request.getRequestURI();
  31. //定义不需要处理的请求路径 比如静态资源(静态页面我们不需要拦截,因为此时的静态页面是没有数据的)
  32. String[] urls = new String[]{
  33. "/employee/login",
  34. "/employee/logout",
  35. "/backend/**",
  36. "/front/**"
  37. };
  38. //做调试用的
  39. //log.info("拦截到请求:{}",requestURL);
  40. //2、判断本次请求是否需要处理
  41. boolean check = check(urls, requestURL);
  42. //3、如果不需要处理,则直接放行
  43. if(check){
  44. //log.info("本次请求{}不需要处理",requestURL);
  45. filterChain.doFilter(request,response);
  46. return;
  47. }
  48. //4、判断登录状态,如果已登录,则直接放行
  49. if(request.getSession().getAttribute("employee") != null){
  50. //log.info("用户已登录,用户id为:{}",request.getSession().getAttribute("employee"));
  51. filterChain.doFilter(request,response);
  52. return;
  53. }
  54. //log.info("用户未登录");
  55. //5、如果未登录则返回未登录结果,通过输出流方式向客户端页面响应数据,具体响应什么数据,看前端的需求,然后前端会根据登陆状态做页面跳转
  56. response.getWriter().write(JSON.toJSONString(R.error("NOTLOGIN")));
  57. return;
  58. }
  59. /**
  60. * 路径匹配,检查本次请求是否需要放行
  61. * @param urls
  62. * @param requestURI
  63. * @return
  64. */
  65. public boolean check(String[] urls,String requestURI){
  66. for (String url : urls) {
  67. //把浏览器发过来的请求和我们定义的不拦截的url做比较,匹配则放行
  68. boolean match = PATH_MATCHER.match(url, requestURI);
  69. if(match){
  70. return true;
  71. }
  72. }
  73. return false;
  74. }
  75. }

功能测试: 发起几个请求看看后台的输出,和能不能访问到资源里面的数据,和能不能跳转,注意,上面的后台日志代码已经被注释,需要在后台看到日志的话,需要把注释去掉;

新增员工

数据模型:

新增员工,其实就是将我们的新增页面录入的员工数据插入到employee表;注意:employee表中对username字段加入了唯一的约束,因为username是员工的登陆账号,必须是唯一的!

employee表中的status字段默认设置为1,表示员工状态可以正常登陆;  

 代码开发:

梳理一下代码执行的流程:

  1. /**
  2. * 新增员工
  3. * @param employee
  4. * @return
  5. */
  6. @PostMapping()//因为请求就是 /employee 在类上已经写了,所以咱俩不用再写了
  7. public R<String> save(HttpServletRequest request,@RequestBody Employee employee){
  8. //对新增的员工设置初始化密码123456,需要进行md5加密处理,后续员工可以直接修改密码
  9. employee.setPassword(DigestUtils.md5DigestAsHex("123456".getBytes()));
  10. employee.setCreateTime(LocalDateTime.now());
  11. employee.setUpdateTime(LocalDateTime.now());
  12. //获得当前登录用户的id
  13. Long empId = (Long) request.getSession().getAttribute("employee");
  14. employee.setCreateUser(empId); //创建人的id,就是当前用户的id(在进行添加操作的id)
  15. employee.setUpdateUser(empId);//最后的更新人是谁
  16. //mybatis提供的新增方法
  17. employeeService.save(employee);
  18. return R.success("新增员工成功");
  19. }

 功能测试:登陆之后,点击添加,然后确认,然后去数据库看一下新增数据成功没,新增成功,那就表示代码可以执行; 注意:但是因为我们把username设置为唯一索引,所以下次再新增用户的时候,就会出现异常,这个异常是MySQL数据库抛出来的;

解决bug:

全局异常捕获

这个全局异常捕获写在common包下;

  1. package com.itheima.reggie.common;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.web.bind.annotation.ControllerAdvice;
  5. import org.springframework.web.bind.annotation.ExceptionHandler;
  6. import org.springframework.web.bind.annotation.ResponseBody;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import java.sql.SQLIntegrityConstraintViolationException;
  9. /**
  10. * @author LJM
  11. * @create 2022/4/15
  12. * 全局异常处理
  13. */
  14. @ControllerAdvice(annotations = {RestController.class, Controller.class}) //表示拦截哪些类型的controller注解
  15. @ResponseBody
  16. @Slf4j
  17. public class GlobalExceptionHandler {
  18. /**
  19. * 处理SQLIntegrityConstraintViolationException异常的方法
  20. * @return
  21. */
  22. @ExceptionHandler(SQLIntegrityConstraintViolationException.class)
  23. public R<String> exceptionHandle(SQLIntegrityConstraintViolationException exception){
  24. log.error(exception.getMessage()); //报错记得打日志
  25. if (exception.getMessage().contains("Duplicate entry")){
  26. //获取已经存在的用户名,这里是从报错的异常信息中获取的
  27. String[] split = exception.getMessage().split(" ");
  28. String msg = split[2] + "这个用户名已经存在";
  29. return R.error(msg);
  30. }
  31. return R.error("未知错误");
  32. }
  33. }

功能测试:登陆后,添加一个一个已经存在账号名,看前端页面提示的是什么信息,以及看后台是否输出了报错日志;

员工信息分页查询

需求分析:系统中的员工比较多的时候,如果在一个页面中全部展示出来会显得比较乱,不便于查看,所以一般都系统中都会以分页的方式来展示列表数据。

 流程分析:

 Java代码:

  1. //配置mybatis-plus的分页插件
  2. package com.itheima.reggie.config;
  3. import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
  4. import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
  5. import org.springframework.context.annotation.Bean;
  6. import org.springframework.context.annotation.Configuration;
  7. /**
  8. * @author LJM
  9. * @create 2022/4/15
  10. * 配置mybatis-plus提供的分页插件拦截器
  11. */
  12. @Configuration
  13. public class MybatisPlusConfig {
  14. @Bean
  15. public MybatisPlusInterceptor mybatisPlusInterceptor(){
  16. MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
  17. mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor());
  18. return mybatisPlusInterceptor;
  19. }
  20. }
  1. /**
  2. * 员工信息分页
  3. * @param page 当前页数
  4. * @param pageSize 当前页最多存放数据条数,就是这一页查几条数据
  5. * @param name 根据name查询员工的信息
  6. * @return
  7. */
  8. @GetMapping("/page")
  9. public R<Page> page(int page,int pageSize,String name){
  10. //这里之所以是返回page对象(mybatis-plus的page对象),是因为前端需要这些分页的数据(比如当前页,总页数)
  11. //在编写前先测试一下前端传过来的分页数据有没有被我们接受到
  12. //log.info("page = {},pageSize = {},name = {}" ,page,pageSize,name);
  13. //构造分页构造器 就是page对象
  14. Page pageInfo = new Page(page,pageSize);
  15. //构造条件构造器 就是动态的封装前端传过来的过滤条件 记得加泛型
  16. LambdaQueryWrapper<Employee> queryWrapper = new LambdaQueryWrapper();
  17. //根据条件查询 注意这里的条件是不为空
  18. queryWrapper.like(StringUtils.isNotEmpty(name),Employee::getName,name);
  19. //添加一个排序条件
  20. queryWrapper.orderByDesc(Employee::getUpdateTime);
  21. //执行查询 这里不用封装了mybatis-plus帮我们做好了
  22. employeeService.page(pageInfo,queryWrapper);
  23. return R.success(pageInfo);
  24. }

功能测试:分页的三个时机,①用户登录成功时,分页查询一次 ②用户使用条件查询的时候分页一次 ③跳转页面的时候分页查询一次

启用/禁用员工账号

需求分析:

在员工管理列表页面中,可以对某个员工账号进行启用或者是禁用操作。账号禁用的员工不能登陆系统,启用后的员工可以正常登陆;

需要注意的是:只有管理员(admin用户)才可以对其他普通用户进行启用操作,禁用操作,所以普通用户登录系统后启用,禁用按钮不显示;

并且如果某个员工账号的状态为正常,则按钮显示为’‘禁用’,如果员工账号状态为已禁用,则按钮显示为“启用”。

普通员工登录系统后,启用,禁用按钮不显示;

代码开发:

注意:这里修改状态码要反着来,因为正常的用户你只能把它设置为禁用;已经禁用的账号你只能把它设置为正常

流程分析:

注意:启用,禁用的员工账号,本质上就是一个更新操作,也就是对status状态字段进行修改操作;

在controller中创建update方法,此方法是一个通用的修改员工信息的方法,因为status也是employee中的一个属性而已;这里使用了动态SQL的功能,根据具体的数据修改对应的字段信息;

  1. /**
  2. * 根据id修改员工信息
  3. * @param employee
  4. * @return
  5. */
  6. @PutMapping
  7. public R<String> update(HttpServletRequest request,@RequestBody Employee employee){
  8. log.info(employee.toString());
  9. Long empId = (Long)request.getSession().getAttribute("employee");
  10. employee.setUpdateTime(LocalDateTime.now());
  11. employee.setUpdateUser(empId);
  12. employeeService.updateById(employee);
  13. return R.success("员工信息修改成功");
  14. }

功能测试:测试的时候我们发现出现了问题,就是我们修改员工的状态,提示信息显示修改成功,但是我们去数据库查验证的时候,发现员工的状态码压根就没有变化,这是为什么呢?

仔细观察id后,我们会发现后台的SQL语句使用的id和数据库中的id是不一样的!

原因是:mybatis-plus对id使用了雪花算法,所以存入数据库中的id是19为长度,但是前端的js只能保证数据的前16位的数据的精度,对我们id后面三位数据进行了四舍五入,所以就出现了精度丢失;就会出现前度传过来的id和数据里面的id不匹配,就没办法正确的修改到我们想要的数据;

当然另一种解决bug的方法是:关闭mybatis-plus的雪花算法来处理ID,我们使用自增ID的策略来往数据库添加id就行;

使用自定义消息转换器

 代码bug修复:

思路:既然js对long型的数据会进行精度丢失,那么我们就对数据进行转型,我们可以在服务端(Java端)给页面响应json格式的数据时进行处理,将long型的数据统一转换为string字符串;

代码实现步骤:

 步骤一:自定义消息转换类

  1. package com.itheima.reggie.common;
  2. import com.fasterxml.jackson.databind.DeserializationFeature;
  3. import com.fasterxml.jackson.databind.ObjectMapper;
  4. import com.fasterxml.jackson.databind.module.SimpleModule;
  5. import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
  6. import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer;
  7. import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer;
  8. import com.fasterxml.jackson.datatype.jsr310.deser.LocalTimeDeserializer;
  9. import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer;
  10. import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
  11. import com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer;
  12. import java.math.BigInteger;
  13. import java.time.LocalDate;
  14. import java.time.LocalDateTime;
  15. import java.time.LocalTime;
  16. import java.time.format.DateTimeFormatter;
  17. import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES;
  18. /**
  19. * 对象映射器:基于jackson将Java对象转为json,或者将json转为Java对象
  20. * 将JSON解析为Java对象的过程称为 [从JSON反序列化Java对象]
  21. * 从Java对象生成JSON的过程称为 [序列化Java对象到JSON]
  22. */
  23. public class JacksonObjectMapper extends ObjectMapper {
  24. public static final String DEFAULT_DATE_FORMAT = "yyyy-MM-dd";
  25. public static final String DEFAULT_DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss";
  26. public static final String DEFAULT_TIME_FORMAT = "HH:mm:ss";
  27. public JacksonObjectMapper() {
  28. super();
  29. //收到未知属性时不报异常
  30. this.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
  31. //反序列化时,属性不存在的兼容处理
  32. this.getDeserializationConfig().withoutFeatures(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
  33. SimpleModule simpleModule = new SimpleModule()
  34. .addDeserializer(LocalDateTime.class, new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_TIME_FORMAT)))
  35. .addDeserializer(LocalDate.class, new LocalDateDeserializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_FORMAT)))
  36. .addDeserializer(LocalTime.class, new LocalTimeDeserializer(DateTimeFormatter.ofPattern(DEFAULT_TIME_FORMAT)))
  37. .addSerializer(BigInteger.class, ToStringSerializer.instance)
  38. .addSerializer(Long.class, ToStringSerializer.instance)
  39. .addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_TIME_FORMAT)))
  40. .addSerializer(LocalDate.class, new LocalDateSerializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_FORMAT)))
  41. .addSerializer(LocalTime.class, new LocalTimeSerializer(DateTimeFormatter.ofPattern(DEFAULT_TIME_FORMAT)));
  42. //注册功能模块 例如,可以添加自定义序列化器和反序列化器
  43. this.registerModule(simpleModule);
  44. }
  45. }

步骤二:在前面的webMvcConfig 配置类中扩展spring mvc 的消息转换器,在此消息转换器中使用spring提供的对象转换器进行Java对象到json数据的转换;

  1. /**
  2. * 扩展mvc框架的消息转换器
  3. * @param converters
  4. */
  5. @Override
  6. protected void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
  7. //log.info("扩展消息转换器...");
  8. //创建消息转换器对象
  9. MappingJackson2HttpMessageConverter messageConverter = new MappingJackson2HttpMessageConverter();
  10. //设置对象转换器,底层使用Jackson将Java对象转为json
  11. messageConverter.setObjectMapper(new JacksonObjectMapper());
  12. //将上面的消息转换器对象追加到mvc框架的转换器集合中
  13. //转换器是有优先级顺序的,这里我们把自己定义的消息转换器设置为第一优先级,所以会优先使用我们的转换器来进行相关数据进行转换,如果我们的转换器没有匹配到相应的数据来转换,那么就会去寻找第二个优先级的转换器,以此类推
  14. converters.add(0,messageConverter);
  15. }

然后启动程序,使用f12查看服务器响应到浏览器的用户id是不是变成了字符串,和数据库中是否相对应;

发现对应,即消息转换器配置成功;

然后再去测试 启用与禁用 员工账号这个功能,发现操作更新成功,并且数据库修改成功;

编辑员工信息

 需求分析:

 数据回显后端代码:其实主要逻辑在前端。。。。。

  1. /**
  2. * 根据前端传过来的员工id查询数据库进行数据会显给前端
  3. * @param id
  4. * @return
  5. */
  6. @GetMapping("/{id}")
  7. public R<Employee> getById(@PathVariable Long id){
  8. Employee employee = employeeService.getById(id);
  9. if (employee != null){
  10. return R.success(employee) ;
  11. }
  12. return R.error("没有查询到该员工信息");
  13. }

修改回显数据后,点击保存,会发送一个update的请求给后端,前面我们已经写了这个update的controller,所以只需要在前端跳转发请求就行;这样就实现了方法的复用,减少了代码两;

功能测试:自己测试编辑,看能不能数据回显,可不可以修改成功,修改后数据库的数据有没有跟着变化;

七、菜品分类管理

公共字段填充(这里有重点)

 问题分析:

  1. 把相关的注解加在需要mybatis-plus自动帮我们填充的字段上面
  2. @TableField(fill = FieldFill.INSERT) //插入时填充字段
  3. private LocalDateTime createTime;
  4. @TableField(fill = FieldFill.INSERT_UPDATE) //插入和更新时填充字段
  5. private LocalDateTime updateTime;
  6. @TableField(fill = FieldFill.INSERT) //插入时填充字段
  7. private Long createUser;
  8. @TableField(fill = FieldFill.INSERT_UPDATE) //插入和更新时填充字段
  9. private Long updateUser;

 然后设置一个处理类:在此类中为公共字段赋值,需要实现 接口;

  1. package com.itheima.reggie.common;
  2. import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.apache.ibatis.reflection.MetaObject;
  5. import java.time.LocalDateTime;
  6. /**
  7. * @author LJM
  8. * @create 2022/4/16
  9. * 自定义元数据对象处理器
  10. */
  11. @Slf4j
  12. @Component //注意:这个要记得交给spring容器管理,不然这个功能就没发用。。。。
  13. //那么怎么确定你要添加的功能是不是要交给容器管理呢?就是你直接写了一个工具类或者是功能类,需要对数据库的数据或者是数据库数据的结果产生影响的时候,你明明写了这样一个类,但是功能却没有生效,那么这个时候就要首先考虑是不是容器没有托管这个类
  14. public class MyMetaObjecthandler implements MetaObjectHandler {
  15. /**
  16. * 插入操作,自动填充
  17. * @param metaObject
  18. */
  19. @Override
  20. public void insertFill(MetaObject metaObject) {
  21. metaObject.setValue("createTime", LocalDateTime.now());
  22. metaObject.setValue("updateTime",LocalDateTime.now());
  23. metaObject.setValue("createUser", new Long(1)); //这里的id是不能直接获取的,所以这里先写死,后面教你怎么动态获取员工id
  24. metaObject.setValue("updateUser",new Long(1));
  25. }
  26. /**
  27. * 更新操作,自动填充
  28. * @param metaObject
  29. */
  30. @Override
  31. public void updateFill(MetaObject metaObject) {
  32. metaObject.setValue("updateTime",LocalDateTime.now());
  33. metaObject.setValue("updateUser",new Long(1));
  34. }
  35. }

功能完善:

然后为了动态的获取员工的id,这里我们使用了threadLocal这个局部变量来获取和存储员工id;

创建一个工具类来设置和获取threadLocal中的员工id, 注意:要先把数据设置进threadLocal中,才能获取到

  1. package com.itheima.reggie.common;
  2. /**
  3. * @author LJM
  4. * @create 2022/4/16
  5. * 基于ThreadLocal封装工具类,用户保存和获取当前登录用户id
  6. */
  7. public class BaseContext {
  8. //用来存储用户id
  9. private static ThreadLocal<Long> threadLocal = new ThreadLocal<>();
  10. /**
  11. * 设置值
  12. * @param id
  13. */
  14. public static void setCurrentId(Long id){
  15. threadLocal.set(id);
  16. }
  17. /**
  18. * 获取值
  19. * @return
  20. */
  21. public static Long getCurrentId(){
  22. return threadLocal.get();
  23. }
  24. }

在前面我们写的LongCheckFilter这个过滤器中,把这个地方的代码加上添加和保存id的代码

  1. //4、判断登录状态,如果已登录,则直接放行
  2. if(request.getSession().getAttribute("employee") != null){
  3. //log.info("用户已登录,用户id为:{}",request.getSession().getAttribute("employee"));
  4. //把用户id存储到本地的threadLocal
  5. Long emId = (Long) request.getSession().getAttribute("employee");
  6. BaseContext.setCurrentId(emId);
  7. filterChain.doFilter(request,response);
  8. return;
  9. }
  1. 把处理器中的静态id改为动态获取:
  2. metaObject.setValue("createUser", BaseContext.getCurrentId());
  3. metaObject.setValue("updateUser",BaseContext.getCurrentId());

 这里的ID之所以全为1,是因为操作添加员工这个功能的管理员为admin,它的id就是1;

新增分类

需求分析:

数据模型:

从资料去复制实体Category类到entity包;

数据库中的表结构:

 

创建mapper:

  1. package com.itheima.reggie.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.itheima.reggie.entity.Category;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface CategoryMapper extends BaseMapper<Category> {
  7. }

 创建service:

  1. package com.itheima.reggie.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.itheima.reggie.entity.Category;
  4. /**
  5. * @author LJM
  6. * @create 2022/4/16
  7. */
  8. public interface CategoryService extends IService<Category> {
  9. }
  1. package com.itheima.reggie.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.itheima.reggie.entity.Category;
  4. import com.itheima.reggie.mapper.CategoryMapper;
  5. import com.itheima.reggie.service.CategoryService;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * @author LJM
  9. * @create 2022/4/16
  10. */
  11. @Service
  12. public class CategoryServiceImpl extends ServiceImpl<CategoryMapper, Category> implements CategoryService {
  13. }

编写controller:

 我们发现新增菜品分类的请求地址是:http://localhost:8080/category

提交的数据格式为:

{name: "湘菜", type: "1", sort: "1"}
  1. /**
  2. * 新增套餐分类
  3. * @param category
  4. * @return
  5. */
  6. @PostMapping
  7. public R<String> save(@RequestBody Category category){
  8. log.info("{category}" ,category);
  9. categoryService.save(category);
  10. return R.success("新增分类成功");
  11. }

功能测试:登录后,点击添加新增菜品分类,看是否成功,数据库的数据是否变化;

菜品类的分页

 代码开发:

  1. /**
  2. * 分页查询
  3. * @param page
  4. * @param pageSize
  5. * @return
  6. */
  7. @GetMapping("/page")
  8. public R<Page> page(int page,int pageSize){
  9. //创建一个分页构造器
  10. Page<Category> categoryPage = new Page<>(page,pageSize);
  11. //创建一个条件构造器 用来排序用的 注意这个条件构造器一定要使用泛型,否则使用条件查询这个方法的时候会报错
  12. LambdaQueryWrapper<Category> queryWrapper = new LambdaQueryWrapper();
  13. //添加排序条件 ,根据sort字段进行排序
  14. queryWrapper.orderByAsc(Category::getSort);
  15. categoryService.page(categoryPage,queryWrapper);
  16. return R.success(categoryPage);
  17. }

功能测试:

删除分类(这里有注意点)

 需求分析:

代码实现: 注意这里的删除功能是不完整的,因为可能需要删除的数据是与其他表关联的,所以删除之前要先判断该条数据是否与其他表中的数据关联;

  1. /**
  2. * 根据id来删除分类的数据
  3. * @param id
  4. * @return
  5. */
  6. @DeleteMapping()
  7. public R<String> delete(@RequestParam("ids") Long ids){ //注意这里前端传过来的数据是ids
  8. categoryService.removeById(ids);
  9. return R.success("分类信息删除成功");
  10. }

 功能完善:

创建对应的mapper:

  1. package com.itheima.reggie.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.itheima.reggie.entity.Dish;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @author LJM
  7. * @create 2022/4/16
  8. */
  9. @Mapper
  10. public interface DishMapper extends BaseMapper<Dish> {
  11. }
  1. package com.itheima.reggie.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.itheima.reggie.entity.Setmeal;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @author LJM
  7. * @create 2022/4/16
  8. */
  9. @Mapper
  10. public interface SetmealMapper extends BaseMapper<Setmeal> {
  11. }

创建service:

  1. package com.itheima.reggie.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.itheima.reggie.entity.Dish;
  4. /**
  5. * @author LJM
  6. * @create 2022/4/16
  7. */
  8. public interface DishService extends IService<Dish> {
  9. }
  1. package com.itheima.reggie.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.itheima.reggie.entity.Setmeal;
  4. public interface SetmealService extends IService<Setmeal> {
  5. }
  1. package com.itheima.reggie.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.itheima.reggie.entity.Dish;
  4. import com.itheima.reggie.mapper.DishMapper;
  5. import com.itheima.reggie.service.DishService;
  6. import lombok.extern.slf4j.Slf4j;
  7. import org.springframework.stereotype.Service;
  8. /**
  9. * @author LJM
  10. * @create 2022/4/16
  11. */
  12. @Service
  13. @Slf4j
  14. public class DishServiceImpl extends ServiceImpl<DishMapper, Dish> implements DishService {
  15. }
  1. package com.itheima.reggie.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.itheima.reggie.entity.Setmeal;
  4. import com.itheima.reggie.mapper.SetmealMapper;
  5. import com.itheima.reggie.service.SetmealService;
  6. import lombok.extern.slf4j.Slf4j;
  7. import org.springframework.stereotype.Service;
  8. /**
  9. * @author LJM
  10. * @create 2022/4/16
  11. */
  12. @Service
  13. @Slf4j
  14. public class SetmealServiceImpl extends ServiceImpl<SetmealMapper, Setmeal> implements SetmealService {
  15. }

添加自定义的service方法:(就是我们需要的业务mybatis没有提供,所以就需要自己另外在service创建新的方法,并且在相关的业务中实现)

  1. //在CategoryService中定义自己需要的方法,直接写就行
  2. void remove(Long id);
  1. 在CategoryService实现类中重写该方法:
  2. 自定义异常类,因为这里需要抛异常了:
  1. package com.itheima.reggie.common;
  2. /**
  3. * 自定义业务异常类
  4. */
  5. public class CustomException extends RuntimeException {
  6. public CustomException(String message){
  7. super(message);
  8. }
  9. }
  1. //然后在外面前面写的GlobalExceptionHandler全局异常捕获器中添加该异常,这样就可以把相关的异常信息显示给前端操作的人员看见
  2. /**
  3. * 处理自定义的异常,为了让前端展示我们的异常信息,这里需要把异常进行全局捕获,然后返回给前端
  4. * @param exception
  5. * @return
  6. */
  7. @ExceptionHandler(CustomException.class)
  8. public R<String> exceptionHandle(CustomException exception){
  9. log.error(exception.getMessage()); //报错记得打日志
  10. //这里拿到的message是业务类抛出的异常信息,我们把它显示到前端
  11. return R.error(exception.getMessage());
  12. }
  1. /**
  2. * 根据id删除 分类,删除之前需要进行判断是否有关联数据
  3. * @param id
  4. */
  5. @Override
  6. public void remove(Long id) {
  7. LambdaQueryWrapper<Dish> dishLambdaQueryWrapper = new LambdaQueryWrapper<>();
  8. //添加查询条件
  9. dishLambdaQueryWrapper.eq(Dish::getCategoryId,id);
  10. //注意:这里使用count方法的时候一定要传入条件查询的对象,否则计数会出现问题,计算出来的是全部的数据的条数
  11. int count = dishService.count(dishLambdaQueryWrapper);
  12. //查询当前分类是否关联了菜品,如果已经管理,直接抛出一个业务异常
  13. if (count > 0){
  14. //已经关联了菜品,抛出一个业务异常
  15. throw new CustomException("当前分类项关联了菜品,不能删除");
  16. }
  17. //查询当前分类是否关联了套餐,如果已经管理,直接抛出一个业务异常
  18. LambdaQueryWrapper<Setmeal> setmealLambdaQueryWrapper = new LambdaQueryWrapper<>();
  19. setmealLambdaQueryWrapper.eq(Setmeal::getCategoryId,id);
  20. //注意:这里使用count方法的时候一定要传入条件查询的对象,否则计数会出现问题,计算出来的是全部的数据的条数
  21. int setmealCount = setmealService.count(setmealLambdaQueryWrapper);
  22. if (setmealCount > 0){
  23. //已经关联了套餐,抛出一个业务异常
  24. throw new CustomException("当前分类项关联了套餐,不能删除");
  25. }
  26. //正常删除
  27. super.removeById(id);
  28. }

然后在controller调用刚刚实现的方法就行:把之前的remove方法给删除就行,重新调用我们自己实现的方法;

  1. /**
  2. * 根据id来删除分类的数据
  3. * @param id
  4. * @return
  5. */
  6. @DeleteMapping
  7. public R<String> delete(@RequestParam("ids") Long id){ //注意这里前端传过来的数据是ids
  8. categoryService.remove(id);
  9. return R.success("分类信息删除成功");
  10. }

测试:自己添加测试数据测试就行;记得一定要测试一下删除有相关联的数据,看会不会删除和在前端提示异常信息;

修改分类

这里的编辑的数据回显,前端已经帮我们做好了,所以我们就不需要去数据库查询了,这样可以减少对数据库的操作;

  1. /**
  2. * 根据id修改分类
  3. * @param category
  4. * @return
  5. */
  6. @PutMapping
  7. public R<String> update(@RequestBody Category category){
  8. categoryService.updateById(category);
  9. return R.success("修改分类信息成功");
  10. }

记得在对应的实体类加上公共字段的值设置:前面我们配置了这个,所以这里只需要加注解就行;

  1. //创建时间
  2. @TableField(fill = FieldFill.INSERT)
  3. private LocalDateTime createTime;
  4. //更新时间
  5. @TableField(fill = FieldFill.INSERT_UPDATE)
  6. private LocalDateTime updateTime;
  7. //创建人
  8. @TableField(fill = FieldFill.INSERT)
  9. private Long createUser;
  10. //修改人
  11. @TableField(fill = FieldFill.INSERT_UPDATE)
  12. private Long updateUser;

八、菜品管理的业务功能

文件的上传和下载(重点)

整体介绍:

 

 文件下载:

 

 

后端具体代码的实现:

yml配置文件:配置上传图片的存储位置;

  1. reggie:
  2. path: E:\reggie\
  1. package com.itheima.reggie.controller;
  2. import com.itheima.reggie.common.R;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.PostMapping;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import org.springframework.web.multipart.MultipartFile;
  9. import javax.servlet.ServletOutputStream;
  10. import javax.servlet.http.HttpServletResponse;
  11. import java.io.*;
  12. import java.util.UUID;
  13. /**
  14. * @author LJM
  15. * @create 2022/4/16
  16. * 文件上传和下载
  17. */
  18. @RestController
  19. @RequestMapping("/common")
  20. public class CommonController {
  21. @Value("${reggie.path}")
  22. private String basePath;
  23. /**
  24. * 文件的上传
  25. * @param file
  26. * @return
  27. */
  28. @PostMapping("/upload")
  29. public R<String> upload(MultipartFile file){
  30. //这个file是一个临时文件,需要转存到指定位置,否则本次请求完成后临时文件会删除
  31. //拿到文件的原始名
  32. String originalFilename = file.getOriginalFilename();
  33. //拿到文件的后缀名 比如 .png .jpg
  34. String suffix = originalFilename.substring(originalFilename.lastIndexOf("."));
  35. //使用uuid生成的作为文件名的一部分,这样可以防止文件名相同造成的文件覆盖
  36. String fileName = UUID.randomUUID().toString() + suffix;
  37. //创建一个目录对象,看传文件的时候,接收文件的目录存不存在
  38. File dir = new File(basePath);
  39. if (!dir.exists()){
  40. //文件目录不存在,直接创建一个目录
  41. dir.mkdirs();
  42. }
  43. try {
  44. //把前端传过来的文件进行转存
  45. file.transferTo(new File(basePath + fileName));
  46. }catch (IOException e){
  47. e.printStackTrace();
  48. }
  49. return R.success(fileName);
  50. }
  51. @GetMapping("/download")
  52. public void download(String name, HttpServletResponse response){
  53. try {
  54. //输入流,通过输入流读取文件内容 这里的name是前台用户需要下载的文件的文件名
  55. //new File(basePath + name) 是为了从存储图片的地方获取用户需要的图片对象
  56. FileInputStream fileInputStream = new FileInputStream(new File(basePath + name));
  57. //输出流,通过输出流将文件写回浏览器
  58. ServletOutputStream outputStream = response.getOutputStream();
  59. //设置写回去的文件类型
  60. response.setContentType("image/jpeg");
  61. //定义缓存区,准备读写文件
  62. int len = 0 ;
  63. byte[] buff = new byte[1024];
  64. while ((len = fileInputStream.read(buff)) != -1){
  65. outputStream.write(buff,0,len);
  66. outputStream.flush();
  67. }
  68. //关流
  69. outputStream.close();
  70. fileInputStream.close();
  71. }catch (Exception e){
  72. e.printStackTrace();
  73. }
  74. }
  75. }

注意:这里上传的文件的文件名要和这个地方的一样,接收文件的参数的名不能随便定义,要和下面的name的值一致

新增菜品(业务的实现是重点)

 需求分析:

数据模型:

 

代码开发:

 创建相关的mapper和service层:

  1. package com.itheima.reggie.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.itheima.reggie.entity.DishFlavor;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface DishFlavorMapper extends BaseMapper<DishFlavor> {
  7. }
  1. package com.itheima.reggie.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.itheima.reggie.entity.DishFlavor;
  4. public interface DishFlavorService extends IService<DishFlavor> {
  5. }
  1. package com.itheima.reggie.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.itheima.reggie.entity.DishFlavor;
  4. import com.itheima.reggie.mapper.DishFlavorMapper;
  5. import com.itheima.reggie.service.DishFlavorService;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * @author LJM
  9. * @create 2022/4/16
  10. */
  11. @Service
  12. public class DishFlavorServiceImpl extends ServiceImpl<DishFlavorMapper, DishFlavor> implements DishFlavorService {
  13. }

编写controller:

 先获取和返回菜品分类列表; 前端主要的代码;

  1. // 获取菜品分类列表
  2. const getCategoryList = (params) => {
  3. return $axios({
  4. url: '/category/list',
  5. method: 'get',
  6. params
  7. })
  8. }
  9. if (res.code === 1) {
  10. this.dishList = res.data //这里就相当于把所有的category对象的数据赋值给dishList
  11. }
  12. 这是菜品分类和数据双向绑定的前端代码: 我们返回的是一个集合,
  13. </el-form-item>
  14. <el-form-item
  15. label="菜品分类:"
  16. prop="categoryId"
  17. >
  18. <el-select
  19. v-model="ruleForm.categoryId"
  20. placeholder="请选择菜品分类"
  21. >
  22. <el-option v-for="(item,index) in dishList" :key="index" :label="item.name" :value="item.id" />
  23. </el-select>
  24. </el-form-item>

在CategoryController书写查询代码,不过这里的返回值和参数接收值可能和自己想的有点不一样。。。这个的返回值和参数值 值得多思考一下; 这里之所以返回list集合,是因为这个要展示的数据是引用类型的数据集,集合可以存放任意类型的数据;

  1. /**
  2. * 根据条件查询分类数据
  3. * @param category
  4. * @return
  5. */
  6. @GetMapping("/list")
  7. //这个接口接收到参数其实就是一个前端传过来的type,这里之所以使用Category这个类来接受前端的数据,是为了以后方便
  8. //因为这个Category类里面包含了type这个数据,返回的数据多了,你自己用啥取啥就行
  9. private R<List<Category>> list(Category category){
  10. //条件构造器
  11. LambdaQueryWrapper<Category> queryWrapper = new LambdaQueryWrapper();
  12. //添加查询条件
  13. queryWrapper.eq(category.getType() != null,Category::getType,category.getType());
  14. //添加排序条件 使用两个排序条件,如果sort相同的情况下就使用更新时间进行排序
  15. queryWrapper.orderByAsc(Category::getSort).orderByDesc(Category::getUpdateTime);
  16. List<Category> list = categoryService.list(queryWrapper);
  17. return R.success(list);
  18. }

测试的返回数据:

接收页面提交的数据(涉及两张表)

点击保存按钮的时候,把前端的json数据提交到后台,后台接收数据,对数据进行处理;要与两张表打交道,一个是dish一个是dish_flavor表;

先用前端页面向后端发一次请求,看看前端具体的请求是什么,我们好写controller;然后再看前端提交携带的参数是什么,我们好选择用什么类型的数据来接收!!!

看下图:这是前端传过来的具体参数,我们需要什么参数类型来接收这些数据就大概知道了;因为这里传过来的参数比较复杂,所以这里有两种方式进行封装,第一:创建与这些数据对应的实体类(dto) ,第二使用map来接收;

这里我们选择使用第一种方式;

  1. package com.itheima.reggie.dto;
  2. import com.itheima.reggie.entity.Dish;
  3. import com.itheima.reggie.entity.DishFlavor;
  4. import lombok.Data;
  5. import java.util.ArrayList;
  6. import java.util.List;
  7. @Data
  8. public class DishDto extends Dish {
  9. private List<DishFlavor> flavors = new ArrayList<>();
  10. private String categoryName; //后面要用的
  11. private Integer copies; //后面要用的
  12. }

 

 前端关键代码:

  1. <el-button
  2. type="primary"
  3. @click="submitForm('ruleForm')"
  4. >
  5. 保存
  6. </el-button>
  7. let params = {...this.ruleForm}
  8. // params.flavors = this.dishFlavors
  9. params.status = this.ruleForm ? 1 : 0
  10. params.price *= 100 //存到数据库的时候是以分为单位,所以这里x100
  11. params.categoryId = this.ruleForm.categoryId
  12. params.flavors = this.dishFlavors.map(obj => ({ ...obj, value: JSON.stringify(obj.value) }))
  13. if (this.actionType == 'add') {
  14. delete params.id
  15. addDish(params).then(res => {
  16. if (res.code === 1) {
  17. this.$message.success('菜品添加成功!')
  18. if (!st) {
  19. this.goBack()
  20. } else { ....
  21. // 新增接口
  22. const addDish = (params) => {
  23. return $axios({
  24. url: '/dish',
  25. method: 'post',
  26. data: { ...params }
  27. })
  28. }

后端代码:

在DishService中新增一个方法:

  1. //新增菜品,同时插入菜品对应的口味数据,需要同时操作两张表:dish dish_flavor
  2. void saveWithFlavor(DishDto dishDto);

相关的实现:

  1. @Autowired
  2. private DishFlavorService dishFlavorService;
  3. /**
  4. * 新增菜品同时保存对应的口味数据
  5. * @param dishDto
  6. */
  7. @Override
  8. @Transactional //涉及到对多张表的数据进行操作,需要加事务,需要事务生效,需要在启动类加上事务注解生效
  9. public void saveWithFlavor(DishDto dishDto) {
  10. //保存菜品的基本信息到菜品表dish中
  11. this.save(dishDto);
  12. Long dishId = dishDto.getId();
  13. //为了把dishId set进flavors表中
  14. //拿到菜品口味
  15. List<DishFlavor> flavors = dishDto.getFlavors();
  16. //这里对集合进行赋值 可以使用循环或者是stream流
  17. flavors = flavors.stream().map((item) ->{
  18. //拿到的这个item就是这个DishFlavor集合
  19. item.setDishId(dishId);
  20. return item; //记得把数据返回去
  21. }).collect(Collectors.toList()); //把返回的集合搜集起来,用来被接收
  22. //把菜品口味的数据到口味表 dish_flavor 注意dish_flavor只是封装了name value 并没有封装dishId(从前端传过来的数据发现的,然而数据库又需要这个数据)
  23. dishFlavorService.saveBatch(dishDto.getFlavors()); //这个方法是批量保存
  24. }

在启动类开启事务: 加上这个注解就行 @EnableTransactionManagement

controller 层的代码:

  1. package com.itheima.reggie.controller;
  2. import com.itheima.reggie.common.R;
  3. import com.itheima.reggie.dto.DishDto;
  4. import com.itheima.reggie.service.DishService;
  5. import lombok.extern.slf4j.Slf4j;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.PostMapping;
  8. import org.springframework.web.bind.annotation.RequestBody;
  9. import org.springframework.web.bind.annotation.RequestMapping;
  10. import org.springframework.web.bind.annotation.RestController;
  11. /**
  12. * @author LJM
  13. * @create 2022/4/16
  14. */
  15. @RestController
  16. @RequestMapping("/dish")
  17. @Slf4j
  18. public class DishController {
  19. @Autowired
  20. private DishService dishService;
  21. /**
  22. * 新增菜品
  23. * @param dishDto
  24. * @return
  25. */
  26. @PostMapping
  27. public R<String> save(@RequestBody DishDto dishDto){ //前端提交的是json数据的话,我们在后端就要使用这个注解来接收参数,否则接收到的数据全是null
  28. dishService.saveWithFlavor(dishDto);
  29. return R.success("新增菜品成功");
  30. }
  31. }

功能测试:记得功能测试!

菜品信息分页查询(功能完善里面的代码要熟悉,有集合泛型的转换,对象copy)

需求分析:

 图片下载的请求前面已经写好了,前端也写好了相关的请求,所以第二步的图片下载和展示就不需要我们管了;

代码编写:

controller层的代码:不过这里是有bug的,后面会改善;

  1. /**
  2. * 菜品信息分页查询
  3. * @param page
  4. * @param pageSize
  5. * @param name
  6. * @return
  7. */
  8. @GetMapping("/page")
  9. public R<Page> page(int page,int pageSize,String name){
  10. //构造一个分页构造器对象
  11. Page<Dish> dishPage = new Page<>(page,pageSize);
  12. //构造一个条件构造器
  13. LambdaQueryWrapper<Dish> queryWrapper = new LambdaQueryWrapper<>();
  14. //添加过滤条件 注意判断是否为空 使用对name的模糊查询
  15. queryWrapper.like(name != null,Dish::getName,name);
  16. //添加排序条件 根据更新时间降序排
  17. queryWrapper.orderByDesc(Dish::getUpdateTime);
  18. //去数据库处理分页 和 查询
  19. dishService.page(dishPage,queryWrapper);
  20. //因为上面处理的数据没有分类的id,这样直接返回R.success(dishPage)虽然不会报错,但是前端展示的时候这个菜品分类这一数据就为空
  21. return R.success(dishPage);
  22. }

功能完善:引入了DishDto

  1. package com.itheima.reggie.dto;
  2. import com.itheima.reggie.entity.Dish;
  3. import com.itheima.reggie.entity.DishFlavor;
  4. import lombok.Data;
  5. import java.util.ArrayList;
  6. import java.util.List;
  7. @Data
  8. public class DishDto extends Dish {
  9. private List<DishFlavor> flavors = new ArrayList<>();
  10. private String categoryName;
  11. private Integer copies; //后面用的
  12. }
  1. /**
  2. * 菜品信息分页查询
  3. * @param page
  4. * @param pageSize
  5. * @param name
  6. * @return
  7. */
  8. @GetMapping("/page")
  9. public R<Page> page(int page,int pageSize,String name){
  10. //构造一个分页构造器对象
  11. Page<Dish> dishPage = new Page<>(page,pageSize);
  12. Page<DishDto> dishDtoPage = new Page<>(page,pageSize);
  13. //上面对dish泛型的数据已经赋值了,这里对DishDto我们可以把之前的数据拷贝过来进行赋值
  14. //构造一个条件构造器
  15. LambdaQueryWrapper<Dish> queryWrapper = new LambdaQueryWrapper<>();
  16. //添加过滤条件 注意判断是否为空 使用对name的模糊查询
  17. queryWrapper.like(name != null,Dish::getName,name);
  18. //添加排序条件 根据更新时间降序排
  19. queryWrapper.orderByDesc(Dish::getUpdateTime);
  20. //去数据库处理分页 和 查询
  21. dishService.page(dishPage,queryWrapper);
  22. //获取到dish的所有数据 records属性是分页插件中表示分页中所有的数据的一个集合
  23. List<Dish> records = dishPage.getRecords();
  24. List<DishDto> list = records.stream().map((item) ->{
  25. //对实体类DishDto进行categoryName的设值
  26. DishDto dishDto = new DishDto();
  27. //这里的item相当于Dish 对dishDto进行除categoryName属性的拷贝
  28. BeanUtils.copyProperties(item,dishDto);
  29. //获取分类的id
  30. Long categoryId = item.getCategoryId();
  31. //通过分类id获取分类对象
  32. Category category = categoryService.getById(categoryId);
  33. if ( category != null){
  34. //设置实体类DishDto的categoryName属性值
  35. String categoryName = category.getName();
  36. dishDto.setCategoryName(categoryName);
  37. }
  38. return dishDto;
  39. }).collect(Collectors.toList());
  40. //对象拷贝 使用框架自带的工具类,第三个参数是不拷贝到属性
  41. BeanUtils.copyProperties(dishPage,dishDtoPage,"records");
  42. dishDtoPage.setRecords(list);
  43. //因为上面处理的数据没有分类的id,这样直接返回R.success(dishPage)虽然不会报错,但是前端展示的时候这个菜品分类这一数据就为空
  44. //所以进行了上面的一系列操作
  45. return R.success(dishDtoPage);
  46. }

records的值: protected List<T> records;

 功能测试:

修改菜品(回显和保存修改都是两张表)

需求分析:

 代码开发: 

第一次交互的后端代码已经完成了;菜品分类的信息前面做新增菜品的时候就已经完成了,这里前端发一个相关接口的请求就行;

第三次交互,图片的下载前面也已经写了,所以前端直接发生请求就行;

菜品信息的回显:

在service添加自己要实现的方法:

  1. //根据id来查询菜品信息和对应的口味信息
  2. DishDto getByIdWithFlavor(Long id);

 方法的 实现:

  1. @Autowired
  2. private DishFlavorService dishFlavorService;
  3. /**
  4. * 根据id来查询菜品信息和对应的口味信息
  5. * @param id
  6. * @return
  7. */
  8. @Override
  9. public DishDto getByIdWithFlavor(Long id) {
  10. //查询菜品的基本信息 从dish表查询
  11. Dish dish = this.getById(id);
  12. //查询当前菜品对应的口味信息,从dish_flavor查询 条件查询
  13. LambdaQueryWrapper<DishFlavor> queryWrapper = new LambdaQueryWrapper<>();
  14. queryWrapper.eq(DishFlavor::getDishId,dish.getId());
  15. List<DishFlavor> flavors = dishFlavorService.list(queryWrapper);
  16. //然后把查询出来的flavors数据set进行 DishDto对象
  17. DishDto dishDto = new DishDto();
  18. //把dish表中的基本信息copy到dishDto对象,因为才创建的dishDto里面的属性全是空
  19. BeanUtils.copyProperties(dish,dishDto);
  20. dishDto.setFlavors(flavors);
  21. return dishDto;
  22. }

controller 层的编写:

  1. /**
  2. * 根据id来查询菜品信息和对应的口味信息
  3. * @param id
  4. * @return
  5. */
  6. @GetMapping("/{id}")
  7. public R<DishDto> get(@PathVariable Long id){ //这里返回什么数据是要看前端需要什么数据,不能直接想当然的就返回Dish对象
  8. DishDto dishDto = dishService.getByIdWithFlavor(id);
  9. return R.success(dishDto);
  10. }

保存修改:(重点)

保存修改设计两张表的数据的修改:

DishService中添加自己实现的方法:

  1. //更新菜品信息同时还更新对应的口味信息
  2. void updateWithFlavor(DishDto dishDto);

相关的实现:

  1. @Override
  2. @Transactional
  3. public void updateWithFlavor(DishDto dishDto) {
  4. //更新dish表的基本信息 因为这里的dishDto是dish的子类
  5. this.updateById(dishDto);
  6. //更新口味信息---》先清理再重新插入口味信息
  7. //清理当前菜品对应口味数据---dish_flavor表的delete操作
  8. LambdaQueryWrapper<DishFlavor> queryWrapper = new LambdaQueryWrapper();
  9. queryWrapper.eq(DishFlavor::getDishId,dishDto.getId());
  10. dishFlavorService.remove(queryWrapper);
  11. //添加当前提交过来的口味数据---dish_flavor表的insert操作
  12. List<DishFlavor> flavors = dishDto.getFlavors();
  13. //下面这段流的代码我注释,然后测试,发现一次是报dishId没有默认值(先测),两次可以得到结果(后测,重新编译过,清除缓存过),相隔半个小时
  14. //因为这里拿到的flavorsz只有name和value(这是在设计数据封装的问题),不过debug测试的时候发现有时候可以拿到全部数据,有时候又不可以... 所以还是加上吧。。。。。
  15. flavors = flavors.stream().map((item) -> {
  16. item.setDishId(dishDto.getId());
  17. return item;
  18. }).collect(Collectors.toList());
  19. dishFlavorService.saveBatch(flavors);
  20. }

小插曲:

stream流没有被注释的时候,dishDto里面所有的属性都可以获取的;

 注释掉的话:debug发现传进来的dishDto中的dishId为null以及id全为null;那么是不是意味着前面的使用id查询的语句也执行失败?

 

需要自己单独实现的功能

见我的另一篇博客:(8条消息) 瑞吉外卖项目剩余功能补充_未来很长,别只看眼前的博客-CSDN博客

九、套餐管理

需求分析:

数据模型:

 

代码开发:

准备工作:

 创建mapper:

  1. package com.itheima.reggie.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.itheima.reggie.entity.SetmealDish;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface SetmealDishMapper extends BaseMapper<SetmealDish> {
  7. }

创建service:

  1. package com.itheima.reggie.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.itheima.reggie.entity.SetmealDish;
  4. /**
  5. * @author LJM
  6. * @create 2022/4/17
  7. */
  8. public interface SetmealDishService extends IService<SetmealDish> {
  9. }

  1. package com.itheima.reggie.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.itheima.reggie.entity.SetmealDish;
  4. import com.itheima.reggie.mapper.SetmealDishMapper;
  5. import com.itheima.reggie.service.SetmealDishService;
  6. import lombok.extern.slf4j.Slf4j;
  7. import org.springframework.stereotype.Service;
  8. /**
  9. * @author LJM
  10. * @create 2022/4/17
  11. */
  12. @Service
  13. @Slf4j
  14. public class SetmealDishServiceImpl extends ServiceImpl<SetmealDishMapper, SetmealDish> implements SetmealDishService {
  15. }

添加菜品数据回显

controller层代码:

 第一个交互前面写了;分类管理通过type的值来控制在前端展示的是 菜品分类(type=1) 或者是 套餐分类(type=2)

第二个交互前面也写了,在categorycontroller里面的list方法;

第四和第五前面也写了;

第三个交互:前端请求的地址;

 在DishController书写代码:

  1. /**
  2. * 根据条件查询对应的菜品数据
  3. * @param dish
  4. * @return
  5. */
  6. @GetMapping("/list")
  7. public R<List<Dish>> list(Dish dish){ //会自动映射的
  8. //这里可以传categoryId,但是为了代码通用性更强,这里直接使用dish类来接受(因为dish里面是有categoryId的),以后传dish的其他属性这里也可以使用
  9. //构造查询条件
  10. LambdaQueryWrapper<Dish> queryWrapper = new LambdaQueryWrapper<>();
  11. queryWrapper.eq(dish.getCategoryId() != null ,Dish::getCategoryId,dish.getCategoryId());
  12. //添加条件,查询状态为1(起售状态)的菜品
  13. queryWrapper.eq(Dish::getStatus,1);
  14. //添加排序条件
  15. queryWrapper.orderByAsc(Dish::getSort).orderByDesc(Dish::getUpdateTime);
  16. List<Dish> list = dishService.list(queryWrapper);
  17. return R.success(list);
  18. }

 控制台输出的sql语句:

SELECT id,name,category_id,price,code,image,description,status,sort,create_time,update_time,create_user,update_user,is_deleted FROM dish WHERE (category_id = ? AND status = ?) ORDER BY sort ASC,update_time DESC

保存添加套餐(理解里面的关系有点困难)

实现要求:点击保存按钮,发送ajax请求,将套餐相关的数据以json形式提交到服务端;

前端提交请求:

 前端携带的参数:重要

 根据前端传过来的数据我们可以在后端确定我们需要在后端使用什么来接受前端的参数;

编写controller:上面的dishList,我们数据库并不需要这个数据,所以接收数据的实体类没有dishList这个属性也没有关系,前端传过来的数据都是自动映射到接收数据的实体类的属性上的,没有对应起来就不会映射。

涉及两张表的操作:套餐表和菜品表;

  1. /**
  2. * 新增套餐
  3. * 涉及两张表的操作:套餐表和菜品表;
  4. * @param setmealDto
  5. * @return
  6. */
  7. @PostMapping
  8. public R<String> save(@RequestBody SetmealDto setmealDto){
  9. setmealService.saveWithDish(setmealDto);
  10. return R.success("新增套餐成功");
  11. }

SetmealService中添加自定义的方法:

  1. /**
  2. * 新增套餐,同时需要保存套餐和菜品的关联关系
  3. * @param setmealDto
  4. */
  5. void saveWithDish(SetmealDto setmealDto);
  1. @Autowired
  2. SetmealDishService setmealDishService;
  3. /**
  4. * 新增套餐,同时需要保存套餐和菜品的关联关系
  5. * @param setmealDto
  6. */
  7. @Transactional
  8. @Override
  9. public void saveWithDish(SetmealDto setmealDto) {
  10. //保存套餐的基本信息,操作setmeal,执行insert
  11. this.save(setmealDto);
  12. log.info(setmealDto.toString()); //查看一下这个套餐的基本信息是什么
  13. //保存套餐和菜品的关联信息,操作setmeal_dish ,执行insert操作
  14. List<SetmealDish> setmealDishes = setmealDto.getSetmealDishes();
  15. //注意上面拿到的setmealDishes是没有setmeanlId这个的值的,通过debug可以发现
  16. setmealDishes.stream().map((item)->{
  17. item.setSetmealId(setmealDto.getId());
  18. return item; //这里返回的就是集合的泛型
  19. }).collect(Collectors.toList());
  20. setmealDishService.saveBatch(setmealDishes); //批量保存
  21. }

功能测试,自己测试;

套餐信息分页查询

需求分析:

代码开发:

前端发起的请求以及携带的参数:

 查询分页:

 

controller层代码编写:

  1. /**
  2. * 套餐分页查询
  3. * @param page
  4. * @param pageSize
  5. * @param name
  6. * @return
  7. */
  8. @GetMapping("/page")
  9. public R<Page> page(int page, int pageSize, String name){
  10. //分页构造器对象
  11. Page<Setmeal> pageInfo = new Page<>(page,pageSize);
  12. //构造条件查询对象
  13. LambdaQueryWrapper<Setmeal> queryWrapper = new LambdaQueryWrapper<>();
  14. //添加查询条件,根据name进行like模糊查询
  15. queryWrapper.like(name != null,Setmeal::getName,name);
  16. //添加排序条件,根据更新时间降序排列
  17. queryWrapper.orderByDesc(Setmeal::getUpdateTime);
  18. setmealService.page(pageInfo,queryWrapper);
  19. /**
  20. * 注意如果这里直接返回R.success(pageInfo),
  21. * 虽然不会报错但是分页的数据的套餐分类的名字是显示不了的;
  22. * 因为这个分页的泛型是Setmeal,Setmeal只封装了f分类的Id categoryId,没有分类的名称 name
  23. * 所以又需要进行name的获取和设值
  24. */
  25. return R.success(pageInfo);
  26. }

 bug修复:

  1. /**
  2. * 套餐分页查询
  3. * @param page
  4. * @param pageSize
  5. * @param name
  6. * @return
  7. */
  8. @GetMapping("/page")
  9. public R<Page> page(int page, int pageSize, String name){
  10. //分页构造器对象
  11. Page<Setmeal> pageInfo = new Page<>(page,pageSize);
  12. Page<SetmealDto> dtoPage = new Page<>(page,pageSize);
  13. //构造条件查询对象
  14. LambdaQueryWrapper<Setmeal> queryWrapper = new LambdaQueryWrapper<>();
  15. //添加查询条件,根据name进行like模糊查询
  16. queryWrapper.like(name != null,Setmeal::getName,name);
  17. //添加排序条件,根据更新时间降序排列
  18. queryWrapper.orderByDesc(Setmeal::getUpdateTime);
  19. setmealService.page(pageInfo,queryWrapper);
  20. //对象的拷贝 注意这里要把分页数据的全集合records给忽略掉
  21. BeanUtils.copyProperties(pageInfo,dtoPage,"records");
  22. List<Setmeal> records = pageInfo.getRecords();
  23. //对records对象进行处理然后封装好赋值给list
  24. List<SetmealDto> list = records.stream().map((item)->{
  25. SetmealDto setmealDto = new SetmealDto();
  26. //对setmealDto进行除categoryName的属性进行拷贝(因为item里面没有categoryName)
  27. BeanUtils.copyProperties(item,setmealDto);
  28. //获取分类id 通过分类id获取分类对象 然后再通过分类对象获取分类名
  29. Long categoryId = item.getCategoryId();
  30. //根据分类id获取分类对象 判断是否为null
  31. Category category = categoryService.getById(categoryId);
  32. if (category != null){
  33. String categoryName = category.getName();
  34. setmealDto.setCategoryName(categoryName);
  35. }
  36. return setmealDto;
  37. }).collect(Collectors.toList());
  38. dtoPage.setRecords(list);
  39. return R.success(dtoPage);
  40. }

删除套餐

代码开发:

单个套餐删除前端发的请求和携带的参数:

 套餐批量删除前端发的请求和携带的参数:

 controller层开发

在SetmealService中添加自定义的方法:

  1. /**
  2. * 删除套餐,同时需要删除套餐和菜品的关联数据
  3. * @param ids
  4. */
  5. void removeWithDish(List<Long> ids);

实现该方法:

  1. /**
  2. * 删除套餐,同时需要删除套餐和菜品的关联数据
  3. * @param ids
  4. */
  5. @Override
  6. @Transactional
  7. public void removeWithDish(List<Long> ids) {
  8. //sql语句应该是这样的:select count(*) setmeal where id in () and status = 1;
  9. //查询套餐的状态,看是否可以删除
  10. LambdaQueryWrapper<Setmeal> queryWrapper = new LambdaQueryWrapper();
  11. queryWrapper.in(Setmeal::getId,ids);
  12. queryWrapper.eq(Setmeal::getStatus,1);
  13. int count = this.count(queryWrapper);
  14. //如果不能删除,抛出一个业务异常
  15. if (count > 0){
  16. throw new CustomException("套餐正在售卖中,不能删除");
  17. }
  18. //如果可以删除,先删除套餐表中的数据--setmeal
  19. this.removeByIds(ids);
  20. //删除关系表中的数据--setmeal_dish
  21. //delete from setmeal_dish where setmeal_id in (1,2,3)
  22. LambdaQueryWrapper<SetmealDish> lambdaQueryWrapper = new LambdaQueryWrapper();
  23. lambdaQueryWrapper.in(SetmealDish::getSetmealId,ids);
  24. setmealDishService.remove(lambdaQueryWrapper);
  25. }

功能测试;

需要自己单独实现的功能

下面功能的具体代码在我的另一篇博客:(8条消息) 瑞吉外卖项目剩余功能补充_未来很长,别只看眼前的博客-CSDN博客

套餐管理的启售,停售

套餐管理的修改

后台订单展示和查询

移动端开发

见另一篇博客:瑞吉外卖移动端开发 笔记 基于springBoot+mybatis-plus_未来很长,别只看眼前的博客-CSDN博客

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/233541
推荐阅读
相关标签
  

闽ICP备14008679号