此项目根据黑马程序员视频所写
视频地址:
黑马程序员Java项目实战《瑞吉外卖》,轻松掌握springboot + mybatis plus开发核心技术的真java实战项目_哔哩哔哩_bilibili实现以下内容
实现步骤:
1、在实体类的属性上加入@TableField注解,指定自动填充的策略
@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;
2、按照框架要求编写元数据对象处理器,在此类中统一为公共字段赋值,此类需要实现MetaObjectHandler接口
package com.it.reggie.common;
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.stereotype.Component;
import java.time.LocalDateTime;
@Component
@Slf4j
public class MyMetaObjectHandler implements MetaObjectHandler {
//插入时自动填充
@Override
public void insertFill(MetaObject metaObject) {
log.info("公共字段自动填充[insert]...");
log.info(metaObject.toString());
metaObject.setValue("createTime", LocalDateTime.now());
metaObject.setValue("updateTime", LocalDateTime.now());
metaObject.setValue("createUser",new Long(1));
metaObject.setValue("updateUser",new Long(1));
}
//更新时自动填充
@Override
public void updateFill(MetaObject metaObject) {
log.info("公共字段自动填充[update]...");
log.info(metaObject.toString());
metaObject.setValue("updateTime", LocalDateTime.now());
metaObject.setValue("updateUser",new Long(1));
}
}
功能完善
前面我们已经完成了公共字段自动填充功能的代码开发,但是还有一个问题没有解决,就是我们在自动填充createUser和updateUser时设置的用户id是固定值,现在我们需要改造成动态获取当前登录用户的id。
有的同学可能想到,用户登录成功后我们将用户id存入了HttpSession中,现在我从HttpSession中获取不就行了?
注意,我们在MyMetaObjectHandler类中是不能获得HttpSession对象的,所以我们需要通过其他方式来获取登录用户id。
可以使用ThreadLocal来解决此问题,它是JDK中提供的一个类。
在学习ThreadLocal之前,我们需要先确认一个事情,就是客户端发送的每次http请求,对应的在服务端都会分配一个新的线程来处理,在处理过程中涉及到下面类中的方法都属于相同的一个线程:
1、LoginCheckFilter的doFilter方法
2、EmployeeContraller的update方法
3、MyMetaObjectHandler的updateFill方法
那什么是ThreadLocal?
ThreadLocal并不是一个Thread,而是Thread的局部变量。当使用ThreadLocal维护变量时,ThreadLocal为每个使用该变量的线程提供独立的变量副本,所以每一个线程都可以独立地改变自己的副本,而不会影响其它线程所对应的副本。
ThreadLocal为每个线程提供单独一份存储空间,具有线程隔离的效果,只有在线程内才能获取到对应的值,线程外则不能访问。
ThreadLocal常用方法:
我们可以在LoginCheckFilter的doFilter方法中获取当前登录用户id,并调用ThreadLocal的set方法来设置当前线程的线程局部变量的值(用户id),然后在MyMetaObjectHandler的updateFill方法中调用ThreadLocal的get方法来获得当前线程所对应的线程局部变量的值(用户id)。
1.
package com.it.reggie.common;
/**
* 基于ThreadLocal封装的工具类,用于保存和获取当前登录用户的id
*/
public class BaseContext {
private static ThreadLocal threadLocal = new InheritableThreadLocal<>();
public static void setCurrentId(Long id){
threadLocal.set(id);
}
public static Long getCurrentId(){
return threadLocal.get();
}
}
2.添加代码段
3.修改MyMetaObjectHandler类
public class MyMetaObjectHandler implements MetaObjectHandler {
//插入时自动填充
@Override
public void insertFill(MetaObject metaObject) {
log.info("公共字段自动填充[insert]...");
log.info(metaObject.toString());
metaObject.setValue("createTime", LocalDateTime.now());
metaObject.setValue("updateTime", LocalDateTime.now());
metaObject.setValue("createUser", BaseContext.getCurrentId());
metaObject.setValue("updateUser", BaseContext.getCurrentId());
}
//更新时自动填充
@Override
public void updateFill(MetaObject metaObject) {
log.info("公共字段自动填充[update]...");
log.info(metaObject.toString());
metaObject.setValue("updateTime", LocalDateTime.now());
metaObject.setValue("updateUser",BaseContext.getCurrentId());
}
}
新增分类,其实就是将我们新增窗口录入的分类数据插入到category表
代码开发同employee表代码开发流程相同,加入对应表即可
最后controller层
@Slf4j
@RestController
@RequestMapping("/category")
@ServletComponentScan
public class CategoryController {
@Autowired
private CategoryService categoryService;
@PostMapping
public R save(@RequestBody Category category){
log.info("category:{}",category);
categoryService.save(category);
return R.success("新增分类成功");
}
}
同employee表分类查询基本一致
/**
* 分页查询
* @param page
* @param pageSize
* @return
*/
@GetMapping("/page")
public R page(int page, int pageSize) {
//构造分页构造器
Page pageInfo=new Page<>(page,pageSize);
//构造条件构造器
LambdaQueryWrapper queryWrapper=new LambdaQueryWrapper<>();
//添加排序条件,根据sort进行排序
queryWrapper.orderByAsc(Category::getSort);
//进行分页查询
categoryService.page(pageInfo,queryWrapper);
return R.success(pageInfo);
}
同employee表中的删除操作一致,但需要做出改善
/**
* 根据id删除分类
* @param ids
* @return
*/
@DeleteMapping
public R delete(Long ids){
log.info("删除分类,id为{}",ids);
categoryService.removeById(ids);
//代码完善之后categoryService.remove(ids);
return R.success("分类信息删除成功");
}
同以往操作一样,创建以上的类即可。
由于mp中没有按照需求删除对应字段的方法,因此我们需要自己在service层编写
serviceImpl类
@Service
public class CategoryServiceImpl extends ServiceImpl implements CategoryService{
@Autowired
private DishService dishService;
@Autowired
private SetmealService setmealService;
public void deleteById(Long id){
//添加查询条件,根据分类id进行查询
LambdaQueryWrapper lqwDish = new LambdaQueryWrapper<>();
LambdaQueryWrapper lqwSetmeal = new LambdaQueryWrapper<>();
//查询是否关联菜品或套餐
//添加查询条件,根据分类id进行查询
lqwDish.eq(Dish::getCategoryId, id);
int count1 = dishService.count(lqwDish);
if(count1>0){
//已经关联菜品,抛出业务异常
throw new CustomException("已经关联菜品,不能删除");
}
lqwSetmeal.eq(Setmeal::getCategoryId, id);
int count2 = setmealService.count(lqwSetmeal);
if(count2>0){
///已经关联套餐,抛出业务异常
throw new CustomException("已经关联套餐,不能删除");
}
log.info("数量1:{},数量2:{}",count1,count2);
//可以删除
super.removeById(id);
}
}
添加异常处理类
package com.it.reggie.common;
public class CustomException extends RuntimeException{
public CustomException(String message){
super(message);
}
}
加入到全局异常处理类GlobalExceptionHandler中
//进行删除操作的异常处理方法
@ExceptionHandler(CustomException.class)
public R exceptionHandler(CustomException ex){
log.error(ex.getMessage());
return R.error(ex.getMessage());
}
这样就完成了,测试通过即可
同employee类操作一致
/**
* 修改分类
* @param category
* @return
*/
@PutMapping
public R update(@RequestBody Category category){
categoryService.updateById(category);
return R.success("分类修改成功");
}
这个部分就完成了///