当前位置: 首页 > news >正文

容桂网站智能推广新闻手机网络营销方案

容桂网站智能推广新闻,手机网络营销方案,深圳电商网站设计公司,免费的短视频推荐app1. 删除分类 1.1 需求分析 在分类管理列表页面#xff0c;可以对某个分类进行删除操作。需要注意的是当分类关联了菜品或者套餐时#xff0c;此分类不允许删除。 1.2 前端页面分析 在前端页面中#xff0c;点击 删除 按钮#xff0c;就会触发定义的方法可以对某个分类进行删除操作。需要注意的是当分类关联了菜品或者套餐时此分类不允许删除。 1.2 前端页面分析 在前端页面中点击 删除 按钮就会触发定义的方法然后往服务端发送异步请求并传递参数id执行删除分类操作。 删除操作的具体执行流程如下 1). 点击删除页面发送ajax请求将参数(id)提交到服务端 2). 服务端Controller接收页面提交的数据并调用Service删除数据 3). Service调用Mapper操作数据库 从上述的分析中可以得到请求的信息如下 请求说明请求方式DELETE请求路径/category请求参数?id13952911149226188811.3 改进思路分析 删除分类数据需要检查删除的分类是否关联了菜品或者套餐所以需要进行功能完善。完善后的逻辑为 根据当前分类的ID查询该分类下是否存在菜品如果存在则提示错误信息 根据当前分类的ID查询该分类下是否存在套餐如果存在则提示错误信息 执行正常的删除分类操作 那么在这里又涉及到两张表结构 dish(菜品表) 和 setmeal(套餐表)。具体的表结构如下 1.4 准备工作 1.4.1 Dish菜品实体类 package com.itheima.reggie.entity;import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime;/**菜品*/ Data public class Dish implements Serializable {private static final long serialVersionUID 1L;private Long id;//菜品名称private String name;//菜品分类idprivate Long categoryId;//菜品价格private BigDecimal price;//商品码private String code;//图片private String image;//描述信息private String description;//0 停售 1 起售private Integer status;//顺序private Integer sort;TableField(fill FieldFill.INSERT)private LocalDateTime createTime;TableField(fill FieldFill.INSERT_UPDATE)private LocalDateTime updateTime;TableField(fill FieldFill.INSERT)private Long createUser;TableField(fill FieldFill.INSERT_UPDATE)private Long updateUser;}1.4.2 Setmeal套餐实体类  package com.itheima.reggie.entity;import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime;/*** 套餐*/ Data public class Setmeal implements Serializable {private static final long serialVersionUID 1L;private Long id;//分类idprivate Long categoryId;//套餐名称private String name;//套餐价格private BigDecimal price;//状态 0:停用 1:启用private Integer status;//编码private String code;//描述信息private String description;//图片private String image;TableField(fill FieldFill.INSERT)private LocalDateTime createTime;TableField(fill FieldFill.INSERT_UPDATE)private LocalDateTime updateTime;TableField(fill FieldFill.INSERT)private Long createUser;TableField(fill FieldFill.INSERT_UPDATE)private Long updateUser;}1.4.3. Mapper接口DishMapper和SetmealMapper DishMapper package com.itheima.reggie.mapper;import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.itheima.reggie.entity.Dish; import org.apache.ibatis.annotations.Mapper;Mapper public interface DishMapper extends BaseMapperDish { }SetmealMapper  package com.itheima.reggie.mapper;import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.itheima.reggie.entity.Setmeal; import org.apache.ibatis.annotations.Mapper;Mapper public interface SetmealMapper extends BaseMapperSetmeal { }1.4.3 Service接口DishService和SetmealService DishService package com.itheima.reggie.service;import com.baomidou.mybatisplus.extension.service.IService; import com.itheima.reggie.entity.Dish;public interface DishService extends IServiceDish { }SetmealService  package com.itheima.reggie.service;import com.baomidou.mybatisplus.extension.service.IService; import com.itheima.reggie.entity.Setmeal;public interface SetmealService extends IServiceSetmeal { }1.5 代码实现 1). 创建自定义异常 在业务逻辑操作过程中,如果遇到一些业务参数、操作异常的情况下直接抛出此异常。 package com.itheima.reggie.common;import javax.xml.crypto.dsig.spec.XSLTTransformParameterSpec;/*** Description: 自定义业务异常类* date 2022/8/16 10:32*/ public class CustomException extends RuntimeException{public CustomException(String message){super(message);} }2). 在CategoryService中扩展remove方法 package com.itheima.reggie.service;import com.baomidou.mybatisplus.extension.service.IService; import com.itheima.reggie.entity.Category;public interface CategoryService extends IServiceCategory {public void remove(Long id); }3). 在CategoryServiceImpl中实现remove方法 package com.itheima.reggie.service.impl;import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.itheima.reggie.common.CustomException; import com.itheima.reggie.entity.Category; import com.itheima.reggie.entity.Dish; import com.itheima.reggie.entity.Setmeal; import com.itheima.reggie.mapper.CategoryMapper; import com.itheima.reggie.service.CategoryService; import com.itheima.reggie.service.DishService; import com.itheima.reggie.service.SetmealService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service;/*** Description: 类别业务层接口* version 1.0* date 2022/8/15 13:55*/Service public class CategoryServiceImpl extends ServiceImplCategoryMapper, Category implements CategoryService {Autowiredprivate DishService dishService ;Autowiredprivate SetmealService setmealService;Override/**Description: 根据id删除分类删除之前需要判定是否关联菜品* version v1.0* author LiBiGo* date 2022/8/16 10:20*/public void remove(Long id) {// A.查询当前分类是否关联菜品关联则抛出业务异常类LambdaQueryWrapperDish dishLambdaQueryWrapper new LambdaQueryWrapper();// 添加查询条件根据id查询dishLambdaQueryWrapper.eq(Dish::getCategoryId,id);int count1 dishService.count(dishLambdaQueryWrapper);if (count1 0){// 已关联菜品抛出异常throw new CustomException(当前分类下关联了菜品不能删除);}// B.查询当前分类是否关联套餐关联则抛出业务异常类LambdaQueryWrapperSetmeal setmealLambdaQueryWrapper new LambdaQueryWrapper();// 添加查询条件根据id查询setmealLambdaQueryWrapper.eq(Setmeal::getCategoryId,id);int count2 setmealService.count(setmealLambdaQueryWrapper);if (count2 0){// 已关联套餐抛出异常throw new CustomException(当前分类下关联了套餐不能删除);}// 均无关联则删除super.removeById(id); // 父类实现了最基本的根据id查询的删除所以直接调用就行} }那么在上述的业务逻辑中当分类下关联的有菜品或者套餐时在业务代码中抛出了自定义异常会被异常处理器捕获只需要在异常处理器中捕获这一类的异常然后给页面返回对应的提示信息即可。 4). 在GlobalExceptionHandler中处理自定义异常 在全局异常处理器中增加方法用于捕获自定义的异常 CustomException package com.itheima.reggie.common;import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; import java.sql.SQLIntegrityConstraintViolationException; /*** Description: 全局异常处理器*/ControllerAdvice(annotations {RestController.class, Controller.class})// 处理RestController、Controller的函数异常 //指定拦截那些类型的控制器; ResponseBody //将方法的返回值 R 对象转换为json格式的数据, 响应给页面; Slf4j public class GlobalExceptionHandler {/**Description: 异常处理方法* author LiBiGo* date 2022/8/12 17:46*/ExceptionHandler(SQLIntegrityConstraintViolationException.class) // 处理指定异常类public RString exceptionHandler(SQLIntegrityConstraintViolationException ex){log.error(ex.getMessage());//Duplicate entry 299067 for key idx_usernameif(ex.getMessage().contains(Duplicate entry)){String[] split ex.getMessage().split( ); //提取重复字段即哪个用户名重复 从0开始第2个即为用户名String msg split[2] 已存在;return R.error(msg);}return R.error(未知错误);}ExceptionHandler(CustomException.class) // 处理自定义业务异常类public RString exceptionHandler(CustomException ex){log.error(ex.getMessage());return R.error(ex.getMessage());}}5). 改造CategoryController的delete方法 注释掉原有的代码在delete方法中直接调用categoryService中自定义的remove方法。 package com.itheima.reggie.controller;import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.itheima.reggie.common.R; import com.itheima.reggie.entity.Category; import com.itheima.reggie.service.CategoryService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*;/*** Description: 分类管理*/RestController RequestMapping(/category) Slf4j public class CategoryController {Autowiredprivate CategoryService categoryService;/**Description: 新增分类* author LiBiGo* date 2022/8/15 14:05*/PostMappingpublic RString save(RequestBody Category category){log.info(category{},category);categoryService.save(category);return R.success(新增分类成功);}GetMapping(/page)public RPage page(int page,int pageSize){/**Description: 分页查询* author LiBiGo* date 2022/8/15 14:21*/// 分页构造PageCategory pageinfo new Page(page,pageSize);// 构造条件构造器对象LambdaQueryWrapperCategory queryWrapper new LambdaQueryWrapper();// 添加排序条件根据sore进行排序queryWrapper.orderByAsc(Category::getSort);// 进行分页查询categoryService.page(pageinfo,queryWrapper);return R.success(pageinfo);}DeleteMappingpublic RString delete(Long id){/**Description: 根据id删除分类* author LiBiGo* date 2022/8/16 9:58*/log.info(删除分类id为{},id);categoryService.remove(id);return R.success(分类信息删除成功);}PutMappingpublic RString update(RequestBody Category category){/**Description: 根据id修改分类信息* author LiBiGo* date 2022/8/16 10:49*/log.info(根据id修改分类信息{},category);categoryService.updateById(category);return R.success(修改分类成功);} }2. 修改分类 2.1 需求分析 在分类管理列表页面点击修改按钮弹出修改窗口在修改窗口回显分类信息并进行修改最后点击确定按钮完成修改操作。 2.2 前端页面分析 这里面大家会发现修改功能我们还没有实现但是当点击 修改 按钮的时候我们并没有开发根据ID查询数据进行页面回显的功能但是页面的分类数据确实回显回来了。这是怎么做到的呢我们来解析一下前端的代码实现(前端代码已经实现) 那么回显这一步的操作前端已经实现我们就只需要开发一个方法修改操作的方法即可。我们可以通过浏览器来抓取一下修改操作的请求信息如图 具体的请求信息整理如下 请求说明请求方式PUT请求路径/category请求参数{id: 1399923597874081794, name: 超值午餐, sort: 0} 2.3 代码实现 html页面中相关的代码都已经提供好了我们已经分析了请求的信息接下来就可以来创建服务端的CategoryController方法update方法。 【见上一个代码块已集成】
http://www.sadfv.cn/news/216467/

相关文章:

  • 互联网三网合一网站建设做外贸是否需要有自己的网站
  • 网站套餐到期是什么意思婚庆公司招聘
  • 石狮app网站开发哪家好网站title标签内容怎么设置
  • 专题网站创意设计与实现wordpress log in
  • 网站开发struts深圳建设集团是国企吗
  • 辽宁省住房和城乡建设厅网站wordpress转移
  • 网站备案一般由谁来做网站平台建设合同
  • 鞍山网站制作电商企业有哪些
  • 富阳做网站洛洛科技免费企业
  • 国内专业做网站优化 seo
  • 兼职做网站的软件做网站的工具 论坛
  • 网站美工主要工作是什么网站建设服务套餐
  • 成都网站制作软件悟空crm的优势与不足
  • 电子工厂网站建设服装网站开发方案swot
  • 网站建设及使用商业十大网站
  • 网站运营方案包装设计公司 山东
  • 郑州网站建设及托管怎么做网站报价表
  • 专业建设物流行业网站wordpress 实现 功能
  • 做网站是数据库应该放在哪里管理咨询项目
  • 诚聘网站开发人员免费网站生成器
  • 教育投资网站建设方案wordpress 更换空间阿里云
  • html做网站在手机上显示易语言可以做网站吗
  • seo网站优化网站编辑招聘深圳微信建网站
  • 宁德古田建设局网站做电商有哪些网站有哪些
  • 网站后台登录地址修改口红做网站多少钱
  • 专业的网站首页建设公司wordpress大前端
  • 安龙网站建设现在由哪些网站可以做外链
  • 周口公司做网站股权分配系统建设网站
  • 网站运营与建设成品网站10款
  • 传统门户网站有哪些广西教育学会 网站建设