亲宝软件园·资讯

展开

Java瑞吉外卖

爪哇斗罗 人气:0

一. 需求分析

后台系统可以管理员工信息,通过新增员工来添加后台系统的用户,点击添加用户转至添加页面:

添加员工的信息需要保存至员工表【employee】中,结构如下:

其中员工状态默认设为1,表示账号在初始创建是可用的状态下的。

二. 代码开发

开发过程

开发之前,梳理一下具体的流程:

类似以下数据格式:

请求API:

说明
请求URL/employee
请求数据JSON格式的Employee对象

代码编写:

在EmployeeController下添加如下代码:

@PostMapping
    public R<String> save(HttpServletRequest request, @RequestBody Employee employee) {
        log.info("新增员工信息:{}", employee.toString());
        // 设置默认密码为123456 并进行MD5加密
        employee.setPassword(DigestUtils.md5DigestAsHex(CommonsConst.INIT_PASSWORD.getBytes()));
        // 设置创建时间
        employee.setCreateTime(LocalDateTime.now());
        // 设置更新时间
        employee.setUpdateTime(LocalDateTime.now());
        // 用户ID设置(session中取得)
        Long empId = (Long) request.getSession().getAttribute("employee");
        employee.setCreateUser(empId);
        employee.setUpdateUser(empId);
        // 调用存储方法
        employeeService.save(employee);
        return R.success("添加成功");
    }

测试添加数据:

数据库发现多了一天数据,说明添加成功了。

三. 编写全局异常处理

对于添加有一个问题,就是用户名已经设置了主键,若员工用户名已经存在就会报错(SQLIntegrityConstraintViolationException异常),此时我们需要捕获异常,通常捕获异常有以下两种方式:

现在使用第二种方式进行异常捕获:

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;
/**
 * @author jektong
 * @Date 2022/4/29
 */
@ControllerAdvice(annotations = {RestController.class, Controller.class})
@ResponseBody
@Slf4j
public class GlobalExceptionHandler {
    /**
     *
     * @param ex
     * @return
     */
    @ExceptionHandler(SQLIntegrityConstraintViolationException.class)
    public R<String> exceptionHandler(SQLIntegrityConstraintViolationException ex){
        log.error(ex.getMessage());
        return R.error("该账号已经存在");
    }
}

加载全部内容

相关教程
猜你喜欢
用户评论