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

策略模式在 Spring Boot 框架中的应用

策略模式在 Spring Boot 框架中的应用

策略模式 在 Spring Boot 中的应用十分广泛,特别是在处理需要根据条件选择不同实现时,常常会使用到策略模式。例如在依赖注入、业务逻辑处理、数据转换、支付系统、权限控制等场景中,我们都可以通过策略模式来提高代码的灵活性和可扩展性。

可以通过这篇文章详细了解策略模式的实现原理 点击阅读

Spring Boot 中,策略模式的实现通常借助 依赖注入 来动态选择具体的策略,这使得我们可以轻松地扩展新的策略类,而不需要修改现有的代码。

Spring Boot 中策略模式的应用场景:支付系统

场景描述

假设我们在一个电商系统中实现多种支付方式(如支付宝、微信支付、信用卡等)。每种支付方式的处理逻辑不同,我们希望能在用户选择支付方式时动态选择对应的支付策略。这里可以使用策略模式,将不同的支付逻辑封装在独立的策略类中,并在运行时根据用户的选择来决定使用哪个支付策略。

角色映射

  1. Strategy:支付策略接口,定义通用的支付方法。
  2. ConcreteStrategy:具体的支付策略实现类,如支付宝支付、微信支付等。
  3. Context:支付服务类,负责根据用户的选择动态调用不同的支付策略。

实现步骤:Spring Boot 支付系统中的策略模式

Step 1: 定义支付策略接口

PaymentStrategy 接口定义了一个通用的支付方法 pay(),不同支付方式将实现该接口。

// 策略接口:支付策略
public interface PaymentStrategy {void pay(double amount);
}

Step 2: 实现具体的支付策略类

每种支付方式都实现 PaymentStrategy 接口,定义各自的支付逻辑。

支付宝支付策略

import org.springframework.stereotype.Service;// 具体策略类:支付宝支付
@Service("alipay")
public class AlipayStrategy implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("Paying " + amount + " using Alipay.");}
}

微信支付策略

import org.springframework.stereotype.Service;// 具体策略类:微信支付
@Service("wechatPay")
public class WechatPayStrategy implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("Paying " + amount + " using WeChat Pay.");}
}

信用卡支付策略

import org.springframework.stereotype.Service;// 具体策略类:信用卡支付
@Service("creditCard")
public class CreditCardStrategy implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("Paying " + amount + " using Credit Card.");}
}

Step 3: 创建支付服务类(上下文)

PaymentService 类作为上下文类,负责根据用户的选择动态选择并执行支付策略。我们使用 Spring 的 @Autowired@Qualifier 注解,动态注入不同的支付策略。

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;import java.util.Map;// 上下文类:支付服务
@Service
public class PaymentService {private final Map<String, PaymentStrategy> paymentStrategies;@Autowiredpublic PaymentService(Map<String, PaymentStrategy> paymentStrategies) {this.paymentStrategies = paymentStrategies;}public void executePayment(String paymentType, double amount) {PaymentStrategy strategy = paymentStrategies.get(paymentType);if (strategy != null) {strategy.pay(amount);} else {System.out.println("Invalid payment type: " + paymentType);}}
}

解释

  • Map:Spring 通过 @Autowired 注入一个包含所有支付策略的 Map,键是 Spring @Service 注解中的名称,值是对应的 PaymentStrategy 实例。
  • executePayment():根据用户选择的支付类型,动态选择对应的策略并调用支付方法。

Step 4: 测试策略模式

接下来我们创建一个 Spring Boot 控制器,用于处理支付请求。用户可以通过发送 HTTP 请求来指定支付方式和金额。

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;@RestController
@RequestMapping("/payment")
public class PaymentController {private final PaymentService paymentService;@Autowiredpublic PaymentController(PaymentService paymentService) {this.paymentService = paymentService;}@PostMapping("/pay")public String makePayment(@RequestParam String paymentType, @RequestParam double amount) {// 调用支付服务,根据支付方式进行支付paymentService.executePayment(paymentType, amount);return "Payment processed with " + paymentType + " for amount: " + amount;}
}

使用 curl 测试支付接口

1. 支付宝支付
curl -X POST "http://localhost:8080/payment/pay?paymentType=alipay&amount=100.0"
2. 微信支付
curl -X POST "http://localhost:8080/payment/pay?paymentType=wechatPay&amount=150.0"
3. 信用卡支付
curl -X POST "http://localhost:8080/payment/pay?paymentType=creditCard&amount=200.0"

输出结果

Paying 100.0 using Alipay.
Payment processed with alipay for amount: 100.0Paying 150.0 using WeChat Pay.
Payment processed with wechatPay for amount: 150.0Paying 200.0 using Credit Card.
Payment processed with creditCard for amount: 200.0

Spring Boot 中策略模式的实现关键点

  1. 使用 @Service 注册策略类
    • 每个策略类都使用 @Service 注册为 Spring 的 Bean。通过设置不同的名称(如 "alipay""wechatPay"),可以在上下文中识别不同的策略。
  2. 通过 Map 动态注入策略
    • Spring 的 @Autowired 支持将所有实现了 PaymentStrategy 接口的 Bean 注入到一个 Map 中,键为 Bean 的名称,值为 Bean 实例。这允许我们根据用户选择动态获取对应的支付策略。
  3. 上下文类(PaymentService)负责调用策略
    • PaymentService 通过支付类型的名称动态获取并执行相应的支付策略,实现了策略的动态选择。

总结

Spring Boot 中,策略模式可以通过 依赖注入@Autowired 注解 轻松实现。通过将策略类注册为 Spring 的 Bean,可以灵活地选择和切换不同的策略。在支付系统中,策略模式允许我们根据用户选择的支付方式动态选择对应的支付逻辑,使系统具有更好的扩展性和灵活性。

策略模式在 Spring Boot 中的应用场景十分广泛,包括支付处理、日志策略、缓存策略等,任何需要根据不同条件选择不同算法或行为的场景,都可以应用策略模式来实现。


http://www.mrgr.cn/news/33523.html

相关文章:

  • 数字后端教程之Innovus report_property和get_property使用方法及应用案例
  • 【MQTT】代理服务比较RabbitMQ、Mosquitto 和 EMQX
  • 「 审稿答复 」如何写Response评论回复的“第一句”
  • Django Form
  • 一七五、HTML 不同类型的事件及其说明和示例
  • springboot参数校验
  • 蜗牛兼职网设计与Spring Boot应用
  • 轻掺杂漏极(LDD)技术
  • 使用image watch查看图片像素值
  • KamaCoder 103. 水流问题
  • 【MySQL】库的操作
  • 联合体的用法和用联合体判断大小端存储
  • 【排序算法】插入排序_直接插入排序、希尔排序
  • c# 三元表达式
  • 开源 AI 智能名片 S2B2C 商城小程序与营销工具的快速迭代
  • priority_queue 与 deque
  • 如果一个线上运行的程序,出现了死锁,应该怎么处理
  • 【记录】Excel|不允许的操作:合并或隐藏单元格出现的问题列表及解决方案
  • Elasticsearch导出导入数据
  • Flyway 基本概念
  • 【深入Java枚举类:不仅仅是常量的容器】
  • 小红书笔记采集器
  • js进阶——函数作用域和块作用域
  • Centrality
  • 【WSL迁移】将WSL2迁移到D盘
  • 《鸿蒙应用开发实战》关注公众号抽奖