Plugin - 插件开发03_Spring Boot动态插件化与热加载

文章目录

  • Pre
  • 方案概览
  • 使用插件的好处
  • 流程
  • Code
    • Plugin 定义
    • Plugin 实现
    • Plugin 使用方
      • 动态加载插件
      • 类加载器
      • 注册与卸载插件
      • 配置文件
      • 启动类
      • 测试验证
  • 小结

在这里插入图片描述


Pre

插件 - 通过SPI方式实现插件管理

插件 - 一份配置,离插件机制只有一步之遥

插件 - 插件机制触手可及

Plugin - 插件开发01_SPI的基本使用

Plugin - 插件开发02_使用反射机制和自定义配置实现插件化开发

Plugin - 插件开发03_Spring Boot动态插件化与热加载

Plugin - 插件开发04_Spring Boot中的SPI机制与Spring Factories实现


方案概览

常用的插件化实现思路:

  1. spi机制
  2. spring内置扩展点
  3. spring aop技术
  4. springboot中的Factories机制
  5. 第三方插件包:spring-plugin
  6. java agent 技术

在这里插入图片描述


使用插件的好处

  • 模块解耦:插件机制能帮助系统模块间解耦,使得服务间的交互变得更加灵活。
  • 提升扩展性和开放性:通过插件机制,系统能够轻松扩展,支持新的功能或服务,无需大规模修改核心代码。
  • 方便第三方接入:第三方可以按照预定义的插件接口进行集成,不会对主系统造成过多侵入。

流程

定义接口
定义接口
定义接口
打包SDK
打包SDK
打包SDK
读取配置
指定实现类
Bean实例化
调用接口方法
返回结果
应用 A: 定义接口
应用 B: 实现接口并打包成SDK
应用 C: 实现接口并打包成SDK
应用 D: 实现接口并打包成SDK
应用 E: 引用SDK并动态加载实现类
配置文件: 配置项
启动时注册Bean/运行时注册Bean
实例化实现类
调用 接口方法

Code

在这里插入图片描述

要实现一个插件化系统,以便动态地引入外部插件。这些插件可能包括功能增强、第三方集成或业务逻辑的拓展。
定义插件接口。

实现插件机制的关键步骤

  • 插件实现类。
  • 通过Spring的 ImportBeanDefinitionRegistrar 动态注册插件。
    使用自定义类加载器加载外部JAR包中的类。
    在Spring应用中动态加载、更新和删除插件。

Plugin 定义

在这里插入图片描述

首先,我们需要定义一个插件接口,该接口为插件提供统一的方法。插件实现类将根据此接口进行开发。

package com.plugin;public interface IPlugin {String customPluginMethod(String name);
}

接口 IPlugin 包含一个方法 customPluginMethod,插件类可以通过实现该接口来定义具体的插件行为。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><parent><artifactId>SpringBootPluginTest</artifactId><groupId>com.plugin</groupId><version>0.0.1-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>plugin-api</artifactId><properties><maven.compiler.source>8</maven.compiler.source><maven.compiler.target>8</maven.compiler.target></properties></project>

Plugin 实现

在这里插入图片描述
插件实现类实现了 IPlugin 接口,提供了插件的具体功能。

package com.plugin.impl;import com.plugin.IPlugin;public class MyPluginImpl implements IPlugin {@Overridepublic String customPluginMethod(String name) {return "MyPluginImpl-customPluginMethod executed - " + name;}
}
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>com.plugin</groupId><artifactId>SpringBootPluginTest</artifactId><version>0.0.1-SNAPSHOT</version></parent><groupId>com.plugin</groupId><artifactId>plugin-impl</artifactId><name>plugin-impl</name><description>插件实现类</description><dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId></dependency><dependency><groupId>com.plugin</groupId><artifactId>plugin-api</artifactId><version>0.0.1-SNAPSHOT</version></dependency></dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.8.1</version><configuration><source>8</source><target>8</target></configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><version>3.1.0</version><configuration><descriptorRefs><descriptorRef>jar-with-dependencies</descriptorRef></descriptorRefs><finalName>${project.artifactId}-${project.version}-jar-with-dependencies</finalName><appendAssemblyId>false</appendAssemblyId><attach>false</attach><archive><manifest><addDefaultImplementationEntries>true</addDefaultImplementationEntries></manifest></archive></configuration><executions><execution><id>make-assembly</id><phase>package</phase><goals><goal>single</goal></goals></execution></executions></plugin></plugins></build>
</project>

我们将接口实现打包为jar包, 放到业务使用方配置的目录下。


Plugin 使用方

动态加载插件

在Spring Boot中,我们可以通过自定义 ImportBeanDefinitionRegistrar 来实现插件的动态加载。在插件模块启动时,Spring Boot会自动加载并注册插件类

package com.plugin.config;import com.plugin.utils.ClassLoaderHelper;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.context.EnvironmentAware;
import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
import org.springframework.core.env.Environment;
import org.springframework.core.type.AnnotationMetadata;/*** 启动时注册bean*/
@Slf4j
public class PluginImportBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar, EnvironmentAware {/*** jar的存放路径*/private String targetUrl;/*** 插件类全路径*/private String pluginClass;/*** 注册Bean定义到Spring容器中** @param importingClassMetadata 导入类的元数据,通常用于获取注解信息等* @param registry Bean定义的注册表,用于注册Bean定义*/@SneakyThrows@Overridepublic void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {// 获取自定义类加载器,用于加载插件类ClassLoader classLoader = ClassLoaderHelper.getClassLoader(targetUrl);// 加载插件类Class<?> clazz = classLoader.loadClass(pluginClass);// 创建Bean定义构建器BeanDefinitionBuilder builder = BeanDefinitionBuilder.genericBeanDefinition(clazz);// 获取Bean定义BeanDefinition beanDefinition = builder.getBeanDefinition();// 在注册表中注册Bean定义registry.registerBeanDefinition(clazz.getName(), beanDefinition);// 日志记录注册成功信息log.info("plugin register bean [{}],Class [{}] success.", clazz.getName(), clazz);}/*** 设置环境属性** @param environment 环境对象,用于获取环境属性*/@Overridepublic void setEnvironment(Environment environment) {// 从环境对象中获取目标URL属性this.targetUrl = environment.getProperty("targetUrl");// 从环境对象中获取插件类属性this.pluginClass = environment.getProperty("pluginClass");}
}

在 registerBeanDefinitions 方法中,使用自定义的类加载器 ClassLoaderHelper 动态加载插件类,并将其注册为Spring容器中的Bean。


类加载器

package com.plugin.utils;import lombok.extern.slf4j.Slf4j;import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLClassLoader;/*** 类加载器工具类*/
@Slf4j
public class ClassLoaderHelper {/*** 根据给定的URL获取一个ClassLoader实例* 此方法旨在动态加载指定位置的类资源,通过反射手段确保URLClassLoader的addURL方法可访问** @param url 类资源的URL地址,指示ClassLoader要加载的类的位置* @return URLClassLoader的实例,用于加载指定URL路径下的类文件如果无法创建或访问ClassLoader,则返回null*/public static ClassLoader getClassLoader(String url) {try {// 获取URLClassLoader的addURL方法,该方法允许向URLClassLoader添加新的URLMethod method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);// 如果方法不可访问,则设置其为可访问,因为addURL方法是受保护的,需要这样做才能调用if (!method.isAccessible()) {method.setAccessible(true);}// 创建一个新的URLClassLoader实例,初始URL为空数组,使用ClassLoaderUtil类的ClassLoader作为父ClassLoaderURLClassLoader classLoader = new URLClassLoader(new URL[]{}, ClassLoaderHelper.class.getClassLoader());// 在创建 URLClassLoader 时,指定当前系统的 ClassLoader 为父类加载器  ClassLoader.getSystemClassLoader() 这步比较关键,用于打通主程序与插件之间的 ClassLoader ,解决把插件注册进 IOC 时的各种 ClassNotFoundException 问题// URLClassLoader classLoader = new URLClassLoader(new URL[]{}, ClassLoader.getSystemClassLoader());// 调用addURL方法,将指定的URL添加到classLoader中,以便它可以加载该URL路径下的类method.invoke(classLoader, new URL(url));// 返回配置好的ClassLoader实例return classLoader;} catch (Exception e) {// 记录错误信息和异常堆栈,当无法通过反射访问或调用addURL方法时,会进入此块log.error("getClassLoader-error", e);// 返回null,表示未能成功创建和配置ClassLoader实例return null;}}}

为了加载外部JAR包中的插件类,需要一个自定义的类加载器。ClassLoaderHelper 类负责通过反射机制调用 addURL 方法,动态加载指定URL路径下的JAR包。


注册与卸载插件

package com.plugin.utils;import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.stereotype.Component;/*** Spring 工具类**/
@Slf4j
@Component
public class SpringHelper implements ApplicationContextAware {private DefaultListableBeanFactory defaultListableBeanFactory;private ApplicationContext applicationContext;/*** 设置ApplicationContext环境** 当该类被Spring管理时,Spring会调用此方法将ApplicationContext注入* 通过重写此方法,我们可以自定义处理ApplicationContext的方式** @param applicationContext Spring的上下文对象,包含所有的Bean定义和配置信息* @throws BeansException 如果在处理Bean时发生错误*/@Overridepublic void setApplicationContext(ApplicationContext applicationContext) throws BeansException {// 将传入的ApplicationContext赋值给类的成员变量,以便后续使用this.applicationContext = applicationContext;// 将applicationContext转换为ConfigurableApplicationContext,以便获取BeanFactoryConfigurableApplicationContext configurableApplicationContext = (ConfigurableApplicationContext) applicationContext;// 获取bean工厂并转换为DefaultListableBeanFactory,以便进行更深层次的自定义配置this.defaultListableBeanFactory = (DefaultListableBeanFactory) configurableApplicationContext.getBeanFactory();}/*** 注册bean到spring容器中** @param beanName 名称* @param clazz    class*/public void registerBean(String beanName, Class<?> clazz) {// 通过BeanDefinitionBuilder创建bean定义BeanDefinitionBuilder beanDefinitionBuilder = BeanDefinitionBuilder.genericBeanDefinition(clazz);// 注册beandefaultListableBeanFactory.registerBeanDefinition(beanName, beanDefinitionBuilder.getRawBeanDefinition());log.info("register bean [{}],Class [{}] success.", beanName, clazz);}/*** 根据bean名称移除bean定义* 此方法检查指定的bean名称是否在BeanFactory中定义如果定义存在,则将其移除** @param beanName 要移除的bean的名称*/public void removeBean(String beanName) {// 检查BeanFactory中是否定义了指定名称的beanif(defaultListableBeanFactory.containsBeanDefinition(beanName)) {// 如果bean定义存在,则从BeanFactory中移除该定义defaultListableBeanFactory.removeBeanDefinition(beanName);}// 记录移除bean操作的日志信息log.info("remove bean [{}] success.", beanName);}/*** 根据bean的名称获取对应的bean实例* 此方法用于从Spring应用上下文中获取指定名称的bean,便于在需要的地方直接获取bean实例,避免了硬编码** @param name bean的名称,用于唯一标识一个bean* @return Object 返回指定名称的bean实例,类型为Object,可以根据需要转换为具体的类型*/public Object getBean(String name) {return applicationContext.getBean(name);}
}

插件一旦加载并注册到Spring IoC容器后,我们可以通过API来操作插件,比如执行插件中的方法,或者动态更新和卸载插件。

package com.plugin.controller;import com.plugin.IPlugin;
import com.plugin.utils.ClassLoaderHelper;
import com.plugin.utils.SpringHelper;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;import javax.annotation.Resource;@Slf4j
@RestController
public class PluginTestController {@Autowired(required = false)private IPlugin IPlugin;@Resourceprivate SpringHelper springHelper;/*** jar的地址*/@Value("${targetUrl}")private String targetUrl;/*** 插件类全路径*/@Value("${pluginClass}")private String pluginClass;@GetMapping("/test")public String test() {return IPlugin.customPluginMethod("test plugin");}/*** 运行时注册bean* 此方法用于在应用程序运行时动态加载并注册一个bean,* 然后根据这个bean执行相应操作或返回其信息*/@GetMapping("/reload")public Object reload() throws ClassNotFoundException {// 使用自定义类加载器获取指定URL的类加载器ClassLoader classLoader = ClassLoaderHelper.getClassLoader(targetUrl);// 通过类加载器加载指定名称的类Class<?> clazz = classLoader.loadClass(pluginClass);// 在Spring上下文中注册这个类作为一个beanspringHelper.registerBean(clazz.getName(), clazz);// 从Spring上下文中获取新注册的beanObject bean = springHelper.getBean(clazz.getName());// 检查bean是否实现了PluginInterface接口if (bean instanceof IPlugin) {// 如果实现了,将此接口赋值给当前的pluginInterface,并调用其sayHello方法IPlugin plugin = (IPlugin) bean;this.IPlugin = plugin;return plugin.customPluginMethod("test reload");} else {// 如果没有实现,获取并记录该bean实现的第一个接口的名称,并返回bean的字符串表示log.info(bean.getClass().getInterfaces()[0].getName());return bean.toString();}}/*** 移除bean* 该方法用于从Spring应用上下文中移除指定的bean* 它首先通过ClassLoader加载指定的类,然后使用springUtil工具类移除对应的bean* 最后,它尝试获取并打印被移除的bean的信息,如果bean仍然存在的话** @return 返回被移除bean的类名* @throws ClassNotFoundException 如果指定的类不存在,则抛出此异常*/@GetMapping("/remove")public Object remove() throws ClassNotFoundException {// 获取目标URL对应的ClassLoaderClassLoader classLoader = ClassLoaderHelper.getClassLoader(targetUrl);// 通过ClassLoader加载插件类Class<?> clazz = classLoader.loadClass(pluginClass);// 使用springUtil工具类移除加载的插件类beanspringHelper.removeBean(clazz.getName());// 清空pluginInterface引用,表示插件接口已被移除this.IPlugin = null;// 尝试获取已被移除的插件类bean// Object bean = springHelper.getBean(clazz.getName());// 如果bean不为空,打印bean的信息//if (bean != null) {//    log.info(bean.toString());// }// 返回被移除bean的类名return clazz.getName() + " removed";}
}

配置文件

在 application.properties 中配置插件路径和插件类的全路径

spring.main.allow-bean-definition-overriding=truetargetUrl=file:/D:/plugin-extends/plugin-impl-0.0.1-SNAPSHOT-jar-with-dependencies.jar
pluginClass=com.plugin.impl.MyPluginImpl

启动类

我们在Spring Boot启动类中使用 @Import 注解加载插件配置

package com.plugin;import com.plugin.config.PluginImportBeanDefinitionRegistrar;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;@SpringBootApplication
@Import(PluginImportBeanDefinitionRegistrar.class)
public class SpringBootPluginTestApplication {public static void main(String[] args) {SpringApplication.run(SpringBootPluginTestApplication.class, args);}
}

测试验证

在这里插入图片描述

启动时动态加载jar:http://127.0.0.1:8080/test
运行时动态加载jar:http://127.0.0.1:8080/reload
运行时动态卸载jar: http://127.0.0.1:8080/remove


小结

通过自定义类加载器、ImportBeanDefinitionRegistrar 和动态Bean管理,我们能够在Spring Boot应用中实现灵活的插件机制。这样的插件化架构不仅能够提升系统的可扩展性,还能有效地支持插件的动态加载和卸载,为系统提供更好的功能扩展能力。

在这里插入图片描述

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

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

相关文章

ECharts柱状图-阶梯瀑布图,附视频讲解与代码下载

引言&#xff1a; 在数据可视化的世界里&#xff0c;ECharts凭借其丰富的图表类型和强大的配置能力&#xff0c;成为了众多开发者的首选。今天&#xff0c;我将带大家一起实现一个柱状图图表&#xff0c;通过该图表我们可以直观地展示和分析数据。此外&#xff0c;我还将提供…

C/C++流星雨

系列文章 序号直达链接1C/C爱心代码2C/C跳动的爱心3C/C李峋同款跳动的爱心代码4C/C满屏飘字表白代码5C/C大雪纷飞代码6C/C烟花代码7C/C黑客帝国同款字母雨8C/C樱花树代码9C/C奥特曼代码10C/C精美圣诞树11C/C俄罗斯方块12C/C贪吃蛇13C/C孤单又灿烂的神-鬼怪14C/C闪烁的爱心15C/C…

ModelScope-Agent(1): 基于开源大语言模型的可定制Agent系统

目录 简介快速入门 简介 github地址 快速入门 看前两篇&#xff0c;调用千问API和天气API # 选用RolePlay 配置agent from modelscope_agent.agents.role_play import RolePlay # NOQArole_template 你扮演一个天气预报助手&#xff0c;你需要查询相应地区的天气&#x…

【模型对比】ChatGPT vs Kimi vs 文心一言那个更好用?数据详细解析,找出最适合你的AI辅助工具!

在这个人工智能迅猛发展的时代&#xff0c;AI聊天助手已经深入我们的工作与生活。你是否曾在选择使用ChatGPT、Kimi或是百度的文心一言时感到一头雾水&#xff1f;每款AI都有其独特的魅力与优势&#xff0c;那么&#xff0c;究竟哪一款AI聊天助手最适合你呢&#xff1f;本文将带…

微信小程序uni-app+vue3实现局部上下拉刷新和scroll-view动态高度计算

微信小程序uni-appvue3实现局部上下拉刷新和scroll-view动态高度计算 前言 在uni-appvue3项目开发中,经常需要实现列表的局部上下拉刷新功能。由于网上相关教程较少且比较零散,本文将详细介绍如何使用scroll-view组件实现这一功能,包括动态高度计算、下拉刷新、上拉加载等完整…

SQL——DQL分组聚合

分组聚合&#xff1a; 格式&#xff1a; select 聚合函数1(聚合的列),聚合函数2(聚合的列) from 表名 group by 标识列; ###若想方便分辨聚合后数据可在聚合函数前加上标识列&#xff08;以标识列进行分组&#xff09; 常见的聚合函数: sum(列名):求和函数 avg(列名)…

maven打包时出现找不到符号的错误如何解决

在maven打包的时候有时会出现找不到符号的情况&#xff0c;具体原因是由于引用的BaseEntity是framework模块下的实体类&#xff0c;所以需要将framework重新clean再install&#xff0c;成功后再将我们的模块打包就成功了

openGauss开源数据库实战二十一

文章目录 任务二十一 使用JDBC访问openGauss数据库任务目标实施步骤一、准备工作 二、下载并安装JavaSE81 下载JavaSE8安装Java8SE并配置环境变量 三、下载并安装eclipse四、下载并安装openGauss的JDBC驱动包五、使用IDEA编写JDBC测试程序1 使用IDEA的SSH连接虚拟机2 创建项目并…

Git:常用命令

一、查看当前分支 git branch 二、查看所有分支 git branch -a 三、切换到远程分支 git checkout origin/分支名 示例&#xff1a;git checkout origin/dev 四、拉取远程分支代码 git pull origin 分支名 示例&#xff1a;git pull origin dev 五、常用指令 查看暂存区…

运维实战:K8s 上的 Doris 高可用集群最佳实践

今天我们将深入探讨&#xff1a;&#xff1a;如何在 K8s 集群上部署 Compute storage coupled&#xff08;存算耦合&#xff09; 模式的 Doris 高可用集群&#xff1f; 本文&#xff0c;我将为您提供一份全面的实战指南&#xff0c;逐步引导您完成以下关键任务&#xff1a; 配…

在GITHUB上传本地文件指南(详细图文版)

这份笔记简述了如何在GITHUB上上传文件夹的详细策略。 既是对自己未来的一个参考&#xff0c;又希望能给各位读者带来帮助。 详细步骤 打开目标文件夹&#xff08;想要上传的文件夹&#xff09; 右击点击git bash打开 GitHub创立新的仓库后&#xff0c;点击右上方CODE绿色按…

Vue框架入门

Author&#xff1a;Dawn_T17?? 目录 什么是框架 一.Vue 的使用方向 二.Vue 框架的使用场景 &#xff08;TIP&#xff09;MVVM思想 三.Vue入门案例 TIP&#xff1a;插值表达式 四.Vue-指令? &#xff08;1&#xff09;v-bind 和 v-model? ? &#xff08;2&#x…

FPGA 遍历读 LMK04803 寄存器

主要思路&#xff1a; 1.使用 VIO 输出信号控制什么时候开始读LMK04803寄存器 2.遍历LMK04803所有寄存器&#xff0c;将读到的每个寄存器的值显示在VIO上。 3.遍历指的是 从 R0 开始读&#xff0c;R0读完接着读 R1&#xff0c;一直到R31 结束 4.注意的是写寄存器是 32bit &…

【uni-app 微信小程序】新版本发布提示用户进行更新

知识准备 uni.getUpdateManager文档介绍 不支持APP与H5&#xff0c;所以在使用的时候要做好平台类型的判断&#xff0c;如何判断&#xff0c;参考条件编译处理多端差异 代码参考 export const updateApp () > {const updateManager uni.getUpdateManager()updateManag…

vue实现点击左右按钮横向滚动

html部分 <div ref"tabHeaderRef" class"flex items-center tabs_header"><div class"tab-pre" v-if"hidePre" click"leftPre"><i class"el-icon-arrow-left"></i></div><div r…

数据结构(3)单链表的模拟实现

上一节我们进行了数据结构中的顺序表的模拟式现&#xff0c;今天我们来实现一下另外一个数据结构&#xff1a;单链表。 我们在实现顺序表之后一定会引发一些问题和思考&#xff1a; 1.顺序表在头部和中间插入数据会用到循环&#xff0c;时间复杂O&#xff08;N&#xff09; …

uni-app 组成和跨端原理 【跨端开发系列】

&#x1f517; uniapp 跨端开发系列文章&#xff1a;&#x1f380;&#x1f380;&#x1f380; uni-app 组成和跨端原理 【跨端开发系列】 uni-app 各端差异注意事项 【跨端开发系列】uni-app 离线本地存储方案 【跨端开发系列】uni-app UI库、框架、组件选型指南 【跨端开…

操作系统:中断与处理器调度

目录 1、中断与中断系统 中断概念&#xff1a; 中断装置&#xff1a; 中断相关概念&#xff1a; 中断优先级别与中断屏蔽 2、处理机&#xff08;CPU&#xff09;调度 调度相关参数&#xff1a;P62 调度算法&#xff1a; 处理机调度时机 处理机调度过程 3、调度级别与多…

两种距离度量简记

一、Lp距离/Minkowski 距离&#xff08;Minkowski distance&#xff09; 1、Lp距离&#xff1a; 特征空间中两个实例点的距离是两个实例点相似程度的反映。Lp距离是一种一般化的距离度量 设特征空间x是n维实数向量空间Rn xi&#xff0c;xj的Lp距离定义为&#xff08;p>1&…

从零开始的使用SpringBoot和WebSocket打造实时共享文档应用

在现代应用中&#xff0c;实时协作已经成为了非常重要的功能&#xff0c;尤其是在文档编辑、聊天系统和在线编程等场景中。通过实时共享文档&#xff0c;多个用户可以同时对同一份文档进行编辑&#xff0c;并能看到其他人的编辑内容。这种功能广泛应用于 Google Docs、Notion 等…