首页 > 其他分享 >观察者模式实战:Spring Boot中联动更新机制的优雅实现

观察者模式实战:Spring Boot中联动更新机制的优雅实现

时间:2024-07-20 13:28:46浏览次数:16  
标签:studentId Spring Boot 观察者 springframework public 更新 org newAge

引言

在许多应用系统中,我们经常需要处理多个表之间的关联更新问题。例如,在教育管理系统中,当学生的基本信息表中的年龄字段发生更改时,我们可能还需要同步更新学生档案表和学生成绩表中的相关信息。本文将通过一个具体的案例,介绍如何在Spring Boot项目中利用观察者模式来优雅地解决这一需求。

观察者模式简介

观察者模式(Observer Pattern)是一种软件设计模式,它定义了对象之间的一种一对多依赖关系,以便当一个对象的状态发生改变时,所有依赖于它的对象都将得到通知并自动更新。在Spring框架中,观察者模式通常通过事件驱动的方式实现。

案例背景

假设我们有一个教育管理系统的Spring Boot项目,其中包含三个主要的数据表:

  • students 表:存储学生的个人信息,包括年龄等。
  • student_records 表:存储学生的档案信息。
  • student_scores 表:存储学生的成绩信息。

我们的目标是在students表中学生的年龄字段发生变更时,能够自动触发student_recordsstudent_scores表中对应记录的更新。

技术栈

  • Java 11
  • Spring Boot 2.x
  • Spring Data JPA

实现步骤

步骤 1: 定义事件

首先,我们需要定义一个事件类,用于表示学生年龄的更新。


Java

深色版本

1import org.springframework.context.ApplicationEvent;
2
3public class StudentAgeUpdateEvent extends ApplicationEvent {
4
5    private static final long serialVersionUID = 1L;
6
7    private final Long studentId;
8    private final int newAge;
9
10    public StudentAgeUpdateEvent(Object source, Long studentId, int newAge) {
11        super(source);
12        this.studentId = studentId;
13        this.newAge = newAge;
14    }
15
16    public Long getStudentId() {
17        return studentId;
18    }
19
20    public int getNewAge() {
21        return newAge;
22    }
23}

步骤 2: 创建监听器

接下来,我们需要创建两个监听器类,分别用于监听StudentAgeUpdateEvent事件,并在事件发生时更新学生档案表和学生成绩表。


Java

深色版本

1import org.springframework.context.ApplicationListener;
2import org.springframework.stereotype.Component;
3
4@Component
5public class StudentRecordUpdater implements ApplicationListener<StudentAgeUpdateEvent> {
6
7    private final StudentRecordRepository studentRecordRepository;
8
9    public StudentRecordUpdater(StudentRecordRepository studentRecordRepository) {
10        this.studentRecordRepository = studentRecordRepository;
11    }
12
13    @Override
14    public void onApplicationEvent(StudentAgeUpdateEvent event) {
15        Long studentId = event.getStudentId();
16        int newAge = event.getNewAge();
17        // 更新学生档案表
18        studentRecordRepository.updateAge(studentId, newAge);
19    }
20}

Java

深色版本

1import org.springframework.context.ApplicationListener;
2import org.springframework.stereotype.Component;
3
4@Component
5public class StudentScoreUpdater implements ApplicationListener<StudentAgeUpdateEvent> {
6
7    private final StudentScoreRepository studentScoreRepository;
8
9    public StudentScoreUpdater(StudentScoreRepository studentScoreRepository) {
10        this.studentScoreRepository = studentScoreRepository;
11    }
12
13    @Override
14    public void onApplicationEvent(StudentAgeUpdateEvent event) {
15        Long studentId = event.getStudentId();
16        int newAge = event.getNewAge();
17        // 更新学生成绩表
18        studentScoreRepository.updateAge(studentId, newAge);
19    }
20}

步骤 3: 发布事件

在学生服务层中,我们需要在年龄字段更新后发布StudentAgeUpdateEvent事件。


Java

深色版本

1import org.springframework.beans.factory.annotation.Autowired;
2import org.springframework.context.ApplicationEventPublisher;
3import org.springframework.stereotype.Service;
4
5@Service
6public class StudentService {
7
8    private final ApplicationEventPublisher eventPublisher;
9
10    @Autowired
11    public StudentService(ApplicationEventPublisher eventPublisher) {
12        this.eventPublisher = eventPublisher;
13    }
14
15    public void updateStudentAge(Long studentId, int newAge) {
16        // 更新学生表中的年龄
17        // ...
18        
19        // 发布事件
20        eventPublisher.publishEvent(new StudentAgeUpdateEvent(this, studentId, newAge));
21    }
22}

步骤 4: 事务管理

为了确保数据的一致性和完整性,我们还需要在StudentService中添加@Transactional注解,以确保所有的更新操作在一个事务中执行。


Java

深色版本

1import org.springframework.transaction.annotation.Transactional;
2import org.springframework.beans.factory.annotation.Autowired;
3import org.springframework.context.ApplicationEventPublisher;
4import org.springframework.stereotype.Service;
5
6@Service
7@Transactional
8public class StudentService {
9
10    // ... 其他代码保持不变
11}

总结

通过上述步骤,我们成功地实现了当学生表中的年龄字段更新时,自动同步更新学生档案表和学生成绩表的功能。这种方法不仅简化了代码,提高了系统的可维护性,还充分利用了Spring框架提供的事件机制和事务管理能力。


请确保你的项目已经正确配置了Spring Boot的事件发布和监听机制,以及Spring Data JPA的实体映射和仓库接口。此外,对于生产环境,建议进行更详尽的错误处理和日志记录,以增强系统的健壮性和可调试性。

标签:studentId,Spring,Boot,观察者,springframework,public,更新,org,newAge
From: https://blog.csdn.net/h356363/article/details/140449393

相关文章

  • Spring cloud 安全部署与性能优化
    Mr.NeoChen(陈景峯),netkiller,BG7NYT节选自《NetkillerSpringCloud手札》多维度架构-知乎​www.zhihu.com/club/1241768772601950208​编辑1.环境安装1.1.操作系统初始化操作系统按完成后,使用下面脚本做一次初始化curl-shttps://raw.githubusercontent.co......
  • SpringBoot+Vue的闲一品零食交易平台(前后端分离)
    技术栈JavaSpringBootMavenMySQLmybatisVueShiroElement-UI角色对应功能网站用户管理员项目功能截图......
  • SpringBoot+Vue的进存销管理系统(前后端分离)
    技术栈JavaSpringBootMavenMySQLmybatisVueShiroElement-UI角色对应功能管理员员工项目功能截图......
  • 基于Java Springboot餐厅点餐系统
    作者介绍:✌全网粉丝10W+本平台特邀作者、博客专家、CSDN新星计划导师、软件领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于项目实战✌一、作品包含源码+数据库+设计文档万字+全套环境和工具资源+部署教程二、项目技术前端技术:Html、Css......
  • 基于Java Springboot宠物管理系统
    作者介绍:✌全网粉丝10W+本平台特邀作者、博客专家、CSDN新星计划导师、软件领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于项目实战✌一、作品包含源码+数据库+设计文档万字+全套环境和工具资源+部署教程二、项目技术前端技术:Html、Css......
  • Spring Book Club + java查询数据库 + 百万数据 + 同步Elasticsearch(ES)+ 多线程 + Fei
    @FeignClient(name="bwie-elastic")publicinterfaceEsFeign{@PostMapping("/add")publicResultadd(@RequestBodyArrayList<ResourceInfo>resourceInfo);}@RestControllerpublicclassUserControllerimplementsApplica......
  • 毕设项目:springboot+vue实现的在线求职平台
    一、前言    随着信息技术的飞速发展和互联网的普及,线上求职已成为众多求职者和企业招聘的重要渠道。为满足市场需求,我们利用SpringBoot和Vue技术栈,开发了一款功能全面、用户友好的在线求职平台。本文将对该平台的设计、实现及关键技术进行详细介绍。本文介绍基于spring......
  • springboot公寓租赁系统-计算机毕业设计源码03822
    目 录摘要1绪论1.1研究背景与意义1.2选题背景1.3论文结构与章节安排2 公寓租赁系统系统分析2.1可行性分析2.1.1技术可行性分析2.1.2经济可行性分析2.1.3法律可行性分析2.2系统功能分析2.2.1功能性分析2.2.2非功能性分析2.3系统用例......
  • Spring Core
    Author:ACatSmilingSince:2024-07-19IoCIoC:InversionofControl,控制反转。是面向对象编程中的一种设计原则/设计思想,旨在降低代码之间的耦合度,提高系统的灵活性和可维护性。其核心思想是通过反转对象的控制权,将对象创建与对象之间的调用过程交给专门的容器进行管理(如Spring......
  • 课程设计-基于Springboot+Vue的实验室管理系统的设计与实现(源码+LW+包运行)
    源码获取:https://download.csdn.net/download/u011832806/89432238基于SpringBoot+Vue的实验室管理系统开发语言:Java数据库:MySQL技术:SpringBoot+MyBatis+Vue.js工具:IDEA/Ecilpse、Navicat、Maven实验室管理系统软件是一款方便、快捷、实用的信息服务查询软件。随着智能......