当前位置: 首页 > article >正文

PlantUML Integration 编写短信服务类图

PlantUML Integration 写一个类图,主要功能为
1、编写一个serviceSms短信服务类;
2、需要用到短信的地方统一调用基建层的服务即可;
3、可以随意切换、增加短信厂商,不需要更改场景代码,只需要更改application.yml 里面的配置参数smsEffective的值即可完成切换;
4、方法签名1、类型 2、手机号 3、模板ID 4、泛型;
5、pplication.yml 里面的配置参数smsTest的值为true的时候,真实发送短信验证码,值为false的时候,不给用户发送验证码,仅写入将手机号+使用场景type为key、123456为值,写入缓存中;
6、方法签名的中的“类型”使用枚举,包含验证码、通知,如果值为“验证码”,需要将手机号+使用场景type为key、随机验证码为value,写入缓存中,过期时间为5分钟;

@startuml

interface SmsService {
    + sendSms(type: SmsType, phoneNumber: String, templateId: String, content: T): boolean
}

interface SmsProvider {
    + sendSms(type: SmsType, phoneNumber: String, templateId: String, content: T): boolean
}

class SmsProviderA {
    + sendSms(type: SmsType, phoneNumber: String, templateId: String, content: T): boolean
}

class SmsProviderB {
    + sendSms(type: SmsType, phoneNumber: String, templateId: String, content: T): boolean
}

class InfrastructureLayer {
    - SmsProvider smsProvider
}

enum SmsType {
    VERIFICATION_CODE
    NOTIFICATION
}

class Cache {
    + put(key: String, value: String, expiry: int): void
    + get(key: String): String
}

class ApplicationConfiguration {
    - boolean smsTest
}

SmsService --* SmsProvider
SmsProvider <|.. SmsProviderA
SmsProvider <|.. SmsProviderB
SmsProviderA --* InfrastructureLayer
SmsProviderB --* InfrastructureLayer
SmsService *-- SmsType
SmsService o-- Cache
SmsService o-- ApplicationConfiguration

' 注释
note top of SmsService
短信服务类,提供短信发送功能,控制发送模式,管理验证码缓存
end note

note top of SmsProvider
短信厂商接口,定义了发送短信的方法
end note
note top of SmsProviderA
厂商A实现
end note
note top of SmsProviderB
厂商B实现
end note
note top of Cache
验证码缓存类,用于存储和检索验证码
end note
note top of ApplicationConfiguration
应用配置类,用于控制短信发送模式
end note
note top of SmsType
短信类型枚举
end note
note top of InfrastructureLayer
基础设施层
end note

@enduml

请添加图片描述


http://www.kler.cn/a/274422.html

相关文章:

  • C 数组:索引魔杖点化的数据星图阵列
  • bestphp‘s revenge
  • 【使用MCP协议连接本地和远程数据——以Claude的Windows客户端为例】
  • 【AIGC-ChatGPT进阶副业提示词】末日生存指南 2.0:疯狂科学家的荒诞智慧
  • 2024年合肥师范学院信息安全小组内部选拔赛(c211)WP
  • C05S07-Tomcat服务架设
  • 深入挖掘C语言之——枚举
  • Redis数据结构对象中的对象共享、对象的空转时长
  • 【Godot4.2】2D导航01 - AStar2D及其使用方法
  • python企业编码管理的程序(附源码)
  • 微信小程序接口请求出错:request:fail url not in domain list:xxxxx
  • 代码随想录算法训练营第53天 | 1143.最长公共子序列 ,1035.不相交的线 ,53. 最大子序和
  • 5.1.4、【AI技术新纪元:Spring AI解码】Amazon Bedrock
  • ASP .Net Core ILogger日志服务
  • MongoDB聚合运算符:$getField
  • 点云配准9:Colored-ICP的Open3D实现
  • Echarts折线图x轴不显示全部数据的解决办法,亲测有效
  • 电脑数据安全新利器:自动备份文件的重要性与实用方案
  • JupytetNotebook常用的快捷键
  • 【Vue3】Vue3中的编程式路由导航 重点!!!
  • test测试类-变量学习
  • 简单算法题收录
  • 【Python操作基础】——变量操作
  • HarmonyOS(鸿蒙)快速入门
  • Avalon总线学习
  • 杨氏矩阵的查找(复杂度<O(N))