部门管理系统功能完善(删除部门、添加部门、根据 ID 查询部门 和 修改部门)

一、目标

  继续实现 删除部门添加部门根据 ID 查询部门修改部门 的详细功能实现,分为 Controller 层Service 层Mapper 层。

二、代码分析

总体代码:


Controller 层:

package com.zhang.Controller;
@Slf4j
@RequestMapping("/depts")
@RestController
public class DeptController {@Autowiredprivate DeptService deptService;@GetMappingpublic Result list() throws Exception {
//        src/main/resources/dept.txtList<Dept> deptlist = deptService.list();return Result.success(deptlist);}@DeleteMappingpublic Result delete(Integer id){log.info("删除部门ID: " + id);deptService.delete(id);return Result.success();}@PostMappingpublic Result add(@RequestBody Dept dept){log.info("新增部门: " + dept);deptService.add(dept);return Result.success();}@GetMapping("{id}")public Result getById(@PathVariable Integer id){log.info("根据ID查询部门: " + id);Dept dept = deptService.getById(id);return Result.success(dept);}@PutMappingpublic Result update(@RequestBody Dept dept){log.info("更新部门: " + dept);deptService.updata(dept);return Result.success();}

Service 层:

package com.zhang.Service.impl;
@Service
public class DeptServiceimpl implements DeptService {@Autowiredprivate DeptMapper deptMapper;@Overridepublic List<Dept> list() throws Exception {return deptMapper.findAll();}@Overridepublic void delete(Integer id) {deptMapper.deleteById(id);}@Overridepublic void add(Dept dept) {dept.setCreateTime(LocalDateTime.now());dept.setUpdateTime(LocalDateTime.now());deptMapper.add(dept);}@Overridepublic Dept getById(Integer id) {Dept dept = deptMapper.getById(id);return dept;}@Overridepublic void updata(Dept dept) {dept.setUpdateTime(LocalDateTime.now());deptMapper.update(dept);}
}

Mapper 层:

package com.zhang.Mapper;import com.zhang.pojo.Dept;
import org.apache.ibatis.annotations.*;import java.util.List;@Mapper
public interface DeptMapper {@Select("select id, name, create_time, update_time from dept")public List<Dept> findAll();@Delete("delete from dept where id = #{id}")void deleteById(Integer id);@Insert("insert into dept (name, create_time, update_time) VALUES (#{name}, #                            {createTime}, #{updateTime})")void add(Dept dept);@Select("select id, name, create_time, update_time from dept where id = #{id}")Dept getById(Integer id);@Update("update dept set name = #{name}, update_time = #{updateTime} where id = #{id}")void update(Dept dept);}

1. 删除部门

@DeleteMapping("/depts")
public Result delete(@RequestParam(name = "id") Integer _id){System.out.println(_id);return Result.success();}@Override
public void delete(Integer id) {deptMapper.deleteById(id);
}@Delete("delete from dept where id = #{id}")
void deleteById(Integer id);

功能描述:

  • 通过 HTTP DELETE 请求,接收需要删除的部门 ID。
  • Controller 层 接收 ID,调用 Service 层的 delete 方法。
  • Service 层 调用 Mapper 层 执行 SQL 语句 DELETE FROM dept WHERE id = #{id},完成删除操作。
  • 最终返回通用结果对象 Result.success() 作为响应。

注解解释:

  • @DeleteMapping
    • 指定此方法处理 HTTP DELETE 请求。
    • 无需显式指定路径,默认映射到 /depts(基于类上 @RequestMapping("/depts") 的定义)。
  • log.info(...)
    • 使用 Lombok 提供的 @Slf4j 注解 打印日志,方便调试,记录当前删除的部门 ID。
  • Result.success()
    • 返回标准的 JSON 响应格式,表示操作成功。
  • @Delete
    • MyBatis 提供的注解,用于直接编写 SQL DELETE 语句。
    • 其中 #{id} 表示使用 MyBatis 的参数占位符,自动将方法的参数绑定到 SQL 中的 id

2. 添加部门

@PostMapping
public Result add(@RequestBody Dept dept) {log.info("新增部门: " + dept);deptService.add(dept);return Result.success();
}@Override
public void add(Dept dept) {dept.setCreateTime(LocalDateTime.now());dept.setUpdateTime(LocalDateTime.now());deptMapper.add(dept);
}@Insert("insert into dept (name, create_time, update_time) VALUES (#{name}, #{createTime},         #{updateTime})")
void add(Dept dept);

功能描述:

  • 通过 HTTP POST 请求,接收需要添加的部门数据(JSON 格式)。
  • Controller 层 将 JSON 数据绑定到 Dept 对象,并调用 Service 层的 add 方法。
  • Service 层 设置 createTimeupdateTime 字段为当前时间,并调用 Mapper 层 执行插入操作。
  • Mapper 层 执行 SQL 语句 INSERT INTO dept (...) VALUES (...),将新部门数据插入数据库。

注解解释:

  • @PostMapping
    • 指定此方法处理 HTTP POST 请求,通常用于新增数据。
  • @RequestBody
    • 表示从 HTTP 请求体中解析 JSON 数据,并自动绑定到方法参数 dept。
  • 日志记录
    • 打印新增部门信息,便于调试。
  • @Insert
    • MyBatis 提供的注解,用于执行 SQL INSERT 操作。
    • 通过 #{name}, #{createTime}, #{updateTime}Dept 对象的字段动态绑定到 SQL 中。

3. 根据 ID 查询部门

@GetMapping("{id}")
public Result getById(@PathVariable Integer id) {log.info("根据ID查询部门: " + id);Dept dept = deptService.getById(id);return Result.success(dept);
}@Override
public Dept getById(Integer id) {Dept dept = deptMapper.getById(id);return dept;
}@Select("select id, name, create_time, update_time from dept where id = #{id}")
Dept getById(Integer id);

功能描述:

  • 通过 HTTP GET 请求,使用路径参数传递部门 ID。
  • Controller 层 调用 Service 层的 getById 方法。
  • Service 层 调用 Mapper 层 执行查询语句 SELECT ... FROM dept WHERE id = #{id}
  • 将查询到的 Dept 对象封装到通用结果对象中返回给客户端。

注解解释:

  • @GetMapping("{id}")
    • 处理 HTTP GET 请求,并将 URL 中的路径参数绑定到方法参数。
  • @PathVariable
    • 将路径中的 id 部分自动绑定到 id 参数。
  • @Select
    • MyBatis 提供的注解,用于执行 SQL SELECT 查询。
    • 通过 #{id} 绑定方法参数,动态构建查询。

4. 修改部门

@PutMapping
public Result update(@RequestBody Dept dept) {log.info("更新部门: " + dept);deptService.updata(dept);return Result.success();
}@Override
public void updata(Dept dept) {dept.setUpdateTime(LocalDateTime.now());deptMapper.update(dept);
}@Update("update dept set name = #{name}, update_time = #{updateTime} where id = #{id}")
void update(Dept dept);

功能描述:

  • 通过 HTTP PUT 请求,接收需要更新的部门数据(JSON 格式)。
  • Controller 层 调用 Service 层的 updata 方法。
  • Service 层 更新部门的 updateTime 字段为当前时间,调用 Mapper 层 执行更新操作。
  • Mapper 层 执行 SQL 语句 UPDATE dept SET ... WHERE id = #{id},完成数据库更新。

注解解释:

  • @PutMapping
    • 处理 HTTP PUT 请求,用于更新资源数据。
  • @RequestBody
    • 绑定 JSON 数据到方法参数 dept
  • @Update
    • MyBatis 提供的注解,用于执行 SQL UPDATE 操作。
    • 动态绑定 Dept 对象的字段到 SQL 中,实现灵活的更新操作。

三、总结

  通过以上功能实现,完善了 删除部门添加部门查询部门修改部门 的完整流程。通过 Spring Boot 的分层架构(Controller、Service、Mapper)和 MyBatis 的注解,标准且简洁实现了这几个功能。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/61308.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

三格电子-EtherNet IP转Modbus TCP网关

EtherNet/IP转Modbus TCP网关 SG-EIP-TCP-210 产品用途 SG-EIP-TCP-210 网关可以实现将 Modbus TCP 接口设备连接到 EtherNet/IP 网络中。用户不需要了解具体的 Modbus TCP 和 EtherNet/IP 协议即可实现将 Modbus TCP 设备挂载到 EtherNet/IP 接口的 PLC 上&#xff0c;并和 …

查找redis数据库的路径

Redis 数据库的路径通常由配置文件中的 dir 参数指定 查找 Redis 配置文件&#xff1a; Redis 配置文件通常命名为 redis.conf。您可以在以下位置查找它&#xff1a; /etc/redis/redis.conf&#xff08;Linux 系统上的常见位置&#xff09;/usr/local/etc/redis/redis.conf&…

java:简单小练习,面积

面积&#xff1a;圆和长方形 接口&#xff1a;实现面积 test:调用 一、interface: 对于接口&#xff0c;它是Java中一个新增的知识点&#xff0c;而C中没有&#xff0c;因为Java有一个缺陷就是不可以实现多继承&#xff0c;只可以单继承&#xff0c;这就限制了有些功能的使…

241117学习日志——[CSDIY] [ByteDance] 后端训练营 [05]

CSDIY&#xff1a;这是一个非科班学生的努力之路&#xff0c;从今天开始这个系列会长期更新&#xff0c;&#xff08;最好做到日更&#xff09;&#xff0c;我会慢慢把自己目前对CS的努力逐一上传&#xff0c;帮助那些和我一样有着梦想的玩家取得胜利&#xff01;&#xff01;&…

修改gitee提交时用户名密码输错导致提交失败的解决方法

1、打开控制面板&#xff0c;点击用户账户 点击管理Windows凭据 点击Windows凭据&#xff0c;找到gitee,删除后重新git push 重新输入密码即可

Pytest-Bdd-Playwright 系列教程(10):配置功能文件路径 优化场景定义

Pytest-Bdd-Playwright 系列教程&#xff08;10&#xff09;&#xff1a;配置功能文件路径 & 优化场景定义 前言一、功能文件路径的配置1.1 全局设置功能文件路径1.2. 在场景中覆盖路径 二、避免重复输入功能文件名2.1 使用方法2.2 functools.partial 的背景 三、应用场景总…

安装gentoo之第二步:安装gentoo基本系统

目标 &#xff1a;将gentoo配置为服务器&#xff0c; 一、下载并解压stage文件 1.官网下载stage文件 网址&#xff1a;https://www.gentoo.org/downloads/ 将gentoo配置为服务器&#xff0c;所以只下载了stage3-amd64-systemd-20241117T163407Z.tar.xz这个最小的stage文件. 基…

Methode Electronics EDI 需求分析

Methode Electronics 是一家总部位于美国的全球性技术公司&#xff0c;专注于设计和制造用于多个行业的电子和电气组件&#xff0c;产品涵盖汽车、工业、电信、医疗设备以及消费电子等多个领域&#xff0c;提供创新的解决方案。 填写Methode_EDI_Parameters_Template Methode_…

Java基础知识(六)

文章目录 StringString、StringBuffer、StringBuilder 的区别&#xff1f;String 为什么是不可变的?字符串拼接用“” 还是 StringBuilder?String#equals() 和 Object#equals() 有何区别&#xff1f;字符串常量池的作用了解吗&#xff1f;String s1 new String("abc&qu…

p2p网络介绍

P2P&#xff08;Peer-to-Peer&#xff09;网络 是一种去中心化的通信模型&#xff0c;其中每个参与者&#xff08;节点&#xff09;既是客户端&#xff0c;又是服务器。与传统的客户端-服务器&#xff08;C/S&#xff09;架构不同&#xff0c;在 P2P 网络中&#xff0c;所有节点…

C++ STL(7)set

文章目录 一、set1、简介2、迭代器3、常用操作4、应用示例 前言&#xff1a; std::set是C标准模板库&#xff08;STL&#xff09;中的一个关联容器&#xff0c;它存储唯一元素&#xff0c;并自动按升序排列。std::set通常用于需要快速查找、插入和删除元素的场景&#xff0c;同…

ImportError: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29‘ not found

3.一、编译安装make 以make4.2 2.2.1为例 1.下载make wget https://ftp.gnu.org/gnu/make/make-4.2.tar.gz 2.解压make4.2安装包 tar -zxvf make-4.2.tar.gz && cd make-4.2 3.编译安装make-4.2 ./configure --prefix/usr/local/make4.2 make && make …

一文解决Latex中的eps报错eps-converted-to.pdf not found: using draft setting.

在使用Vscode配的PDFLatex编译IEEE TII的Latex模板时&#xff0c;出现eps文件不能转换为pdf错误&#xff0c;看了几十篇方法都没用&#xff0c;自己研究了半天终于可以正常运行了。主要原因还是Settings.JSON中的PDFLatex模块缺少&#xff1a;"--shell-escape", 命令…

深度学习神经网络中的优化器的使用

深度学习:神经网络中的优化器的使用 在深度学习中&#xff0c;优化器是用于更新和调整模型参数&#xff08;例如权重和偏置&#xff09;的算法&#xff0c;目的是减小模型在训练数据上的损失函数值。优化器的核心目标是通过适当的算法快速有效地找到损失函数的最小值或近似最小…

Redis基本的全局命令

在学习redis基本的全局命令之前呢&#xff0c;我们必须先进入redis-cli客户端才行。 如图&#xff1a; get和set get和set是redis两个最核心的命令。 get&#xff1a;根据key来获取value。 set&#xff1a;把key和value存储进去。 如set命令如图&#xff1a; 对于上述图中&…

嵌入式开发人员如何选择合适的开源前端框架进行Web开发

在嵌入式系统的Web开发中&#xff0c;前端框架的选择对于项目的成败有着决定性的影响。一个合适的框架不仅能提高开发效率&#xff0c;还能保证系统的稳定性和可扩展性。本文将介绍几款适用于嵌入式Web开发的开源前端框架&#xff0c;并探讨它们的优缺点。 1. Element Plus V…

【数据结构OJ】【图论】图综合练习--拓扑排序

题目描述 已知有向图&#xff0c;顶点从0开始编号&#xff0c;求它的求拓扑有序序列。 拓扑排序算法&#xff1a;给出有向图邻接矩阵 1.逐列扫描矩阵&#xff0c;找出入度为0且编号最小的顶点v 2.输出v&#xff0c;并标识v已访问 3.把矩阵第v行全清0 重复上述步骤&#xff0…

XLNet——打破 BERT 局限的预训练语言模型

近年来&#xff0c;深度学习在自然语言处理&#xff08;NLP&#xff09;领域取得了革命性进展&#xff0c;其中 BERT 的出现标志着双向语言建模的强大能力。然而&#xff0c;BERT 也存在一些局限性&#xff0c;限制了其在生成任务中的表现。2019 年&#xff0c;由 Google 和 Ca…

力扣题目总结

1.游戏玩法分析IV AC: select IFNULL(round(count(distinct(Result.player_id)) / count(distinct(Activity.player_id)), 2), 0) as fraction from (select Activity.player_id as player_idfrom (select player_id, DATE_ADD(MIN(event_date), INTERVAL 1 DAY) as second_da…

量子计算来袭:如何保护未来的数字世界

目录 前言 一、量子计算安全的学习方向 1. 量子物理学基础 2. 量子计算原理与技术 3. 传统网络安全知识 4. 量子密码学 5. 量子计算安全政策与法规 二、量子计算的漏洞风险 1. 加密算法被破解风险 2. 区块链安全风险 3. 量子密钥分发风险 4. 量子计算系统自身风险 …