首頁 > 軟體

Java中常用的設計模式之策略模式詳解

2022-02-27 19:00:33

優點

1.演演算法可以自由切換。

2.避免使用多重條件判斷。

3.擴充套件性良好。

缺點

1.策略類會增多。

2.所有策略類都需要對外暴露。

使用場景

1.如果在一個系統裡面有許多類,它們之間的區別僅在於它們的行為,那麼使用策略模式可以動態地讓一個物件在許多行為中選擇一種行為。

2.一個系統需要動態地在幾種演演算法中選擇一種。

3.如果一個物件有很多的行為,如果不用恰當的模式,這些行為就只好使用多重的條件選擇語句來實現。

一、實現方式

假設一個場景,我們在電商系統中,訂單分為很多種,例如:普通訂單,秒殺訂單,拼團訂單等等。我們需要建立一個訂單的時候,由於訂單的型別不同,我們需要根據訂單的型別執行不同的業務邏輯。

1、訂單型別列舉類

package com.asurplus.common.strategy;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
 * 訂單型別列舉類
 */
@Getter
@AllArgsConstructor
public enum OrderTypeEnum {
    COMMON(1001, "普通訂單"),
    SECKILL(1002, "秒殺訂單"),
    SPELL(1003, "拼團訂單");
    int type;
    String desc;
}

我們的訂單分為三種,普通訂單,秒殺訂單,拼團訂單。

2、訂單處理介面

package com.asurplus.common.strategy;
/**
 * 訂單處理介面
 */
public interface OrderService {
    /**
     * 建立訂單
     *
     * @return
     */
    void createOrder();
    /**
     * 獲取訂單型別
     *
     * @return
     */
    OrderTypeEnum type();
}

3、普通訂單處理器

package com.asurplus.common.strategy;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
 * 普通訂單處理器
 */
@Slf4j
@Service
public class CommonOrderServiceImpl implements OrderService {
    @Override
    public void createOrder() {
        log.info("建立 普通訂單");
    }
    @Override
    public OrderTypeEnum type() {
        return OrderTypeEnum.COMMON;
    }
}

4、秒殺訂單處理器

package com.asurplus.common.strategy;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
 * 秒殺訂單處理器
 */
@Slf4j
@Service
public class SeckillOrderServiceImpl implements OrderService {
    @Override
    public void createOrder() {
        log.info("建立 秒殺訂單");
    }
    @Override
    public OrderTypeEnum type() {
        return OrderTypeEnum.SECKILL;
    }
}

5、拼團訂單處理器

package com.asurplus.common.strategy;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
 * 拼團訂單處理器
 */
@Slf4j
@Service
public class SpellOrderServiceImpl implements OrderService {
    @Override
    public void createOrder() {
        log.info("建立 拼團訂單");
    }
    @Override
    public OrderTypeEnum type() {
        return OrderTypeEnum.SPELL;
    }
}

6、下單管理器

package com.asurplus.common.strategy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Optional;
/**
 * 訂單管理器
 */
@Component
public class OrderManager {
    /**
     * Autowired 註解的強大之處
     */
    @Autowired
    private List<OrderService> orderServices;
    /**
     * 建立訂單
     *
     * @param type 訂單型別
     * @return
     */
    public void createOrder(int type) {
        /**
         * 根據訂單型別,找到對應的處理器
         */
        Optional<OrderService> any = orderServices.stream().filter(f -> f.type().getType() == type).findAny();
        /**
         * 沒有對應的處理器
         */
        if (!any.isPresent()) {
            throw new RuntimeException("沒有找到相應的訂單實現");
        }
        // 建立訂單
        any.get().createOrder();
    }
}

這裡就能體現出 @Autowired 的強大之處,可以一次性自動注入多個物件。根據訂單型別,選出對應的處理器來處理該訂單。

二、測試

1、引入依賴

<!-- 測試依賴 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
</dependency>

2、測試用例

package com.asurplus.common.strategy;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
/**
 * 策略模式
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public class TestMain {
    @Autowired
    private OrderManager orderManager;
    @Test
    public void test() {
        // 建立 秒殺訂單
        orderManager.createOrder(OrderTypeEnum.SECKILL.getType());
    }
}

輸出結果

總結

本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!   


IT145.com E-mail:sddin#qq.com