Springboot 使用设计模式- 策略模式

简介: Springboot 使用设计模式- 策略模式

前言



直白点,什么场景我们需要使用到设计模式- 策略模式。


在平常的springboot项目里面做CRUD,我们的习惯性基本是 一个mapper,一个service,一个serviceImpl。


但是有时候会出现一种情况,就是实现类impl里面虽然业务主线是归为一致的,但是需要进行类别判断去执行不同的业务逻辑,


导致impl里面出现 一个类别的if 后面跟上一大段业务代码,然后同时存在这一几个 if 判断,这种情况恨不得单独把代码抽出去写成方法,看起来稍微舒服一些(其实这种情况使用策略模式是非常适合的)。


举例场景:


我现在需要实现一个关于支付预下单的功能,然后这个预下单功能大致用到的参数都一样,


但是在下单类型上分为 国内单,海外单,折扣单。


三种不同的下单流程都属于预下单功能的一部分,但是结合业务后,逻辑算法都是基本独立的。


按照往常的写法,可能会出现如下的代码写法:


image.png


或者有的为了不想麻烦,直接就建了三个service,然后三个serviceImpl。


那么就针对上面这个场景,我们使用设计模式-策略模式,就能非常润滑地去实现。


正文



订单信息实体类,OrderInfo.java:


import lombok.Data;
/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description :
 **/
@Data
public class OrderInfo {
    private String orderId; //订单id
    private String platFormType; //(平台)订单类型
    private Double amount;  //金额
    private String createTime; //创建时间
    //....省略若干业务字段
}


预下单的策略接口,OrderStrategyService.java :


/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description :
 **/
public interface OrderStrategyService  {
   //预下单
   String  preCreateOrder(OrderInfo orderInfo);
}


接下来是三个类型订单的实现类,都实现策略接口:


国内,OrderDomestic.java:


/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description :国内
 **/
@Component("Domestic")
public class OrderDomestic implements OrderStrategyService {
    @Override
    public String preCreateOrder(OrderInfo orderInfo) {
        System.out.println("*处理国内预下单的相关业务*");
        return orderInfo.getPlatFormType()+"-国内预下单";
    }
}


海外,OrderOverseas.java :


/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description :海外
 **/
@Component("Overseas")
public class OrderOverseas implements OrderStrategyService {
    @Override
    public String preCreateOrder(OrderInfo orderInfo) {
        System.out.println("**处理海外预下单的相关业务**");
        return orderInfo.getPlatFormType()+"-海外预下单";
    }
}


特殊回扣,


/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description :特殊订单(回扣)
 **/
@Component("Rebate")
public class OrderRebate implements OrderStrategyService {
    @Override
    public String preCreateOrder(OrderInfo orderInfo) {
        System.out.println("***处理国内特殊回扣预下单的相关业务***");
        return orderInfo.getPlatFormType()+"-特殊回扣预下单";
    }
}


可以看到上面三个实现类都实现了策略接口OrderStrategyService,而且使用了注解@Component +组件名。


那么接下来就是策略设计模式的核心, 策略接口实现类的调度使用类,

OrderStrategyContext.java(留意看里面的注释):


/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description : 利用Spring的发现机制,将实现了OrderStrategyService的类都put到orderStrategyMap里面。
 *                 后面只需要根据platformId对应好 各个实现类的注解 如: @Component("Domestic") 就可以取出不同的业务实现类
 **/
@Service
public class OrderStrategyContext {
    private final Map<String, OrderStrategyService> orderStrategyMap = new ConcurrentHashMap<>();
    public OrderStrategyContext(Map<String, OrderStrategyService> strategyMap) {
        this.orderStrategyMap.clear();
        strategyMap.forEach((k, v)-> this.orderStrategyMap.put(k, v));
    }
    public OrderStrategyService getResource(OrderInfo orderInfo){
        return orderStrategyMap.get(orderInfo.getPlatFormType());
    }
}


ps: 可以看到getResource这个方法,获取资源,里面其实就是根据订单类型去取出对应的业务实现类。


ok,到这策略模式的结合使用已经大致完毕,最后是通过策略调度类去使用我们不同类型的实现类。


写一个简单的接口,看看效果:


OrderTestController.java :


image.png

/**
 * @Author : JCccc
 * @CreateTime : 2020/5/11
 * @Description :
 **/
@RestController
public class OrderTestController {
    @Autowired
    private OrderStrategyContext orderStrategyContext;
    @PostMapping("/testStrategy")
    public String testStrategy(@RequestBody OrderInfo orderInfo){
        OrderStrategyService orderServiceImpl = orderStrategyContext.getResource(orderInfo);
        String resultTest = orderServiceImpl.preCreateOrder(orderInfo);
        return resultTest;
    }
}


特殊回扣下单:


image.png


海外下单:


image.png


可以看到控制台:


image.png

相关文章
|
26天前
|
设计模式 算法 Kotlin
Kotlin - 改良设计模式 - 策略模式
Kotlin - 改良设计模式 - 策略模式
45 4
|
3月前
|
设计模式 算法 测试技术
PHP中的设计模式:策略模式的应用与实践
在软件开发的浩瀚海洋中,设计模式如同灯塔,指引着开发者们避开重复造轮子的暗礁,驶向高效、可维护的代码彼岸。今天,我们将聚焦于PHP领域中的一种重要设计模式——策略模式,探讨其原理、应用及最佳实践,揭示如何通过策略模式赋予PHP应用灵活多变的业务逻辑处理能力,让代码之美在策略的变换中熠熠生辉。
|
17天前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
36 1
|
20天前
|
设计模式 前端开发 JavaScript
JavaScript设计模式及其在实战中的应用,涵盖单例、工厂、观察者、装饰器和策略模式
本文深入探讨了JavaScript设计模式及其在实战中的应用,涵盖单例、工厂、观察者、装饰器和策略模式,结合电商网站案例,展示了设计模式如何提升代码的可维护性、扩展性和可读性,强调了其在前端开发中的重要性。
25 2
|
1月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
43 2
|
2月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
本教程详细讲解Kotlin语法,适合深入学习。快速入门可参考“简洁”系列教程。本文通过游泳运动员的案例,介绍策略模式及其在Kotlin中的改良应用,利用高阶函数简化代码结构,提高灵活性。
35 3
|
2月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
本教程详细讲解Kotlin语法,适合深入学习。快速入门可参考“简洁”系列教程。本文介绍策略模式在Kotlin中的应用,通过游泳运动员的例子,展示如何使用接口和高阶函数实现策略模式,使代码更简洁、灵活。
31 2
|
2月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
64 3
|
2月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
28 3
|
2月前
|
设计模式 算法 PHP
PHP中的设计模式:策略模式的深入解析与实践
【10月更文挑战第9天】 策略模式是一种行为设计模式,它允许在运行时选择算法的行为。在PHP开发中,通过使用策略模式,我们可以轻松切换算法或逻辑处理方式而无需修改现有代码结构。本文将深入探讨策略模式的定义、结构以及如何在PHP中实现该模式,并通过实际案例展示其应用价值和优势。
33 1