使用Spring實施策略模式 - javarevisited
作為軟體工程師,我個人的目標是構建可執行,解決問題並且可維護,可擴充套件和高效能的軟體。為此,以有組織的方式編寫程式碼非常重要。因此很清楚每一段程式碼在做什麼,避免重複並提高可維護性。
幾周前,我們有一個需要攝取同一物件的要求,但是根據其中一個欄位,對其進行完全不同的處理。最簡單,最快的方法可能是使用不同的邏輯建立不同的類,並簡單地使用多個“ if / else”語句來執行所需的過程。但是,如果我們沒有兩個流程,但是將來可能只有五個或十個流程,該怎麼辦?
在快節奏的行業中,我們往往會忘記許多這些問題已經建立了解決方案。因此,僅透過對Google進行快速研究,我就發現了策略模式。我以前曾經實現過這種模式,但是起初我沒有想到它。但是,看到這就像隧道盡頭的光芒!
策略模式是使得能夠在執行時選擇的演算法的行為的設計模式。在本教程中,我將解釋一種使用spring框架並利用其依賴注入能力實現它的方法。
在本教程中,我建立了一個Spring Webflux專案,併為您提供了一些背景資訊,該服務透過REST API從電子商務站點獲取訂單。這些訂單可以用於個人或公司客戶。
邏輯很簡單,如果是來自單個客戶的訂單,我們希望使用有效的付款方式。我們將動態決定要處理傳入訂單的類。在下面的程式碼中,我省略了一些方法和建構函式,但是,我強烈建議您在此處獲取完整的專案並自己進行測試。
步驟1:讓我們建立訂單模型,該模型將用於向我們的API提交訂單。
public class Order { public enum MethodOfPayment { CREDIT_CARD, DEBIT_CARD, CORPORATE_ACCOUNT } public enum OrderType{ CORPORATE, INDIVIDUAL } private Customer customer; private OrderType orderType; private String corpCode; private MethodOfPayment methodOfPayment; private Corporation corporation; private List<String> articles; //methods omitted for this post. Visit the github project for more. } |
步驟2:為您的處理類建立一個介面:
public interface OrderProcessingService { //In here we define that all implementations must take an order // and return an OrderApiResponse. Mono<OrderApiResponse> processOrder(Order order); } |
我們已經建立了此介面來定義一種所有處理訂單的合同。
步驟3:為每個處理流建立實現,並使用@Component Annotation對其進行註釋。
@Component("CORPORATE") public class CorporateOrderProcessingService implements OrderProcessingService { @Override public Mono<OrderApiResponse> processOrder(Order order) { return Mono.just(order) .handle(this.handleOrder()); } } // Constructor and other methods omitted for this post but available in the full project. |
@Component("INDIVIDUAL") public class IndividualOrderProcessingService implements OrderProcessingService { @Override public Mono<OrderApiResponse> processOrder(Order order){ return Mono.just(order) .handle(this.handleOrder()); } } // Constructor and other methods omitted for this post but available in the full project. |
注意我們如何給每個註釋一個特定的名稱,該名稱與我們的訂單模型中定義的OrderType列舉相關。這將幫助我們確定對特定訊息使用哪種實現。
第4步:在Controller類中將所有內容粘合在一起:
@RestController public class OrderController { private final Map<String, OrderProcessingService> orderProcessingServices; //Spring will autowire our map with both immplementations and the Component name as the key public OrderController(Map<String, OrderProcessingService> orderProcessingServices) { this.orderProcessingServices = orderProcessingServices; } @PostMapping("/order") public Mono<OrderApiResponse> onNewOrder(@RequestBody Order receivedOrder) { return this.orderProcessingServices.get(receivedOrder.getOrderType().name()) .processOrder(receivedOrder); } } |
在此控制器類中,我們使用了帶字串鍵的Map和OrderProcessingService的例項。Spring的魔力將注入該型別的所有可用bean,並透過其建構函式將元件名稱用作此對映中的鍵。端點/order接受到Order物件以後,我們將基於orderType欄位動態選擇要使用的策略實現。
相關文章
- 使用spring外掛實現策略模式Spring模式
- Spring中實現策略模式示例Spring模式
- 策略模式、策略模式與Spring的碰撞模式Spring
- Spring Boot 策略模式Spring Boot模式
- 實施DevOps安全策略清單dev
- 更好的實施虛擬防火牆策略防火牆
- spring注入bean的幾種策略模式SpringBean模式
- Spring 實現策略模式--自定義註解方式解耦if...elseSpring模式解耦
- SQL 2005 XML最佳實施策略用法SQLXML
- 企業實施BPR 要用彈性策略(轉)
- 使用自定義註解透過BeanPostProcessor實現策略模式Bean模式
- 戰略實施的模式(轉載)模式
- CMDB實踐指南:專案規劃與實施策略解析
- 談ERP實施中的幾個策略(轉)
- Go 實現常用設計模式(二)策略模式Go設計模式
- Go 實現常用設計模式(三)策略模式Go設計模式
- Java設計模式實現之二--策略模式Java設計模式
- 策略模式模式
- 實際業務中使用策略模式對程式碼進行重構模式
- 更優雅地實現策略模式模式
- 用SpringBoot實現策略模式Spring Boot模式
- 《JavaScript設計模式與開發實踐》模式篇(2)—— 策略模式JavaScript設計模式
- DB 分庫分表(1):拆分實施策略和示例演示
- 企業資訊化的策略及ERP實施風險(轉)
- 企業資訊化的策略及ERP的實施(轉)
- 中小型企業ERP實施策略小探(轉)
- iOS模式分析 策略模式iOS模式
- 設計模式——策略模式設計模式
- 設計模式(策略模式)設計模式
- 設計模式-策略模式設計模式
- PHP 模式大全 - 策略模式PHP模式
- 設計模式🔫---策略模式設計模式
- 策略模式在應用中的實踐模式
- 策略模式(Strategy)模式
- 策略模式初探模式
- java策略模式Java模式
- 理解策略模式模式
- JavaStrategyPattern(策略模式)JavaAST模式