您好,登錄后才能下訂單哦!
前言
看到crossoverJie的文章《利用策略模式優(yōu)化過多 if else 代碼》后受到啟發(fā),可以利用策略模式簡化過多的if else代碼,文章中提到可以通過掃描實(shí)現(xiàn)處理器的自注冊,我在這里介紹在Spring Boot框架中的實(shí)現(xiàn)方法。
需求
這里虛擬一個(gè)業(yè)務(wù)需求,讓大家容易理解。假設(shè)有一個(gè)訂單系統(tǒng),里面的一個(gè)功能是根據(jù)訂單的不同類型作出不同的處理。
訂單實(shí)體:
public class OrderDTO { private String code; private BigDecimal price; /** * 訂單類型 * 1:普通訂單; * 2:團(tuán)購訂單; * 3:促銷訂單; */ private String type; // ... 省略 get / set ... }
service接口:
public interface IOrderService { /** * 根據(jù)訂單的不同類型作出不同的處理 * * @param dto 訂單實(shí)體 * @return 為了簡單,返回字符串 */ String handle(OrderDTO dto); }
傳統(tǒng)實(shí)現(xiàn)
根據(jù)訂單類型寫一堆的if else:
public class OrderServiceImpl implements IOrderService { @Override public String handle(OrderDTO dto) { String type = dto.getType(); if ("1".equals(type)) { return "處理普通訂單"; } else if ("2".equals(type)) { return "處理團(tuán)購訂單"; } else if ("3".equals(type)) { return "處理促銷訂單"; } return null; } }
策略模式實(shí)現(xiàn)
利用策略模式,只需要兩行即可實(shí)現(xiàn)業(yè)務(wù)邏輯:
@Service public class OrderServiceV2Impl implements IOrderService { @Autowired private HandlerContext handlerContext; @Override public String handle(OrderDTO dto) { AbstractHandler handler = handlerContext.getInstance(dto.getType()); return handler.handle(dto); } }
可以看到上面的方法中注入了HandlerContext,這是一個(gè)處理器上下文,用來保存不同的業(yè)務(wù)處理器,具體在下文會講解。我們從中獲取一個(gè)抽象的處理器AbstractHandler,調(diào)用其方法實(shí)現(xiàn)業(yè)務(wù)邏輯。
現(xiàn)在可以了解到,我們主要的業(yè)務(wù)邏輯是在處理器中實(shí)現(xiàn)的,因此有多少個(gè)訂單類型,就對應(yīng)有多少個(gè)處理器。以后需求變化,增加了訂單類型,只需要添加相應(yīng)的處理器就可以,上述OrderServiceV2Impl完全不需改動。
我們先看看業(yè)務(wù)處理器的寫法:
@Component @HandlerType("1") public class NormalHandler extends AbstractHandler { @Override public String handle(OrderDTO dto) { return "處理普通訂單"; } }
@Component @HandlerType("2") public class GroupHandler extends AbstractHandler { @Override public String handle(OrderDTO dto) { return "處理團(tuán)購訂單"; } }
@Component @HandlerType("3") public class PromotionHandler extends AbstractHandler { @Override public String handle(OrderDTO dto) { return "處理促銷訂單"; } }
首先每個(gè)處理器都必須添加到spring容器中,因此需要加上@Component注解,其次需要加上一個(gè)自定義注解@HandlerType,用于標(biāo)識該處理器對應(yīng)哪個(gè)訂單類型,最后就是繼承AbstractHandler,實(shí)現(xiàn)自己的業(yè)務(wù)邏輯。
自定義注解 @HandlerType:
@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited public @interface HandlerType { String value(); }
抽象處理器 AbstractHandler:
public abstract class AbstractHandler { abstract public String handle(OrderDTO dto); }
自定義注解和抽象處理器都很簡單,那么如何將處理器注冊到spring容器中呢?
具體思路是:
我們將核心的功能封裝在HandlerProcessor類中,完成上面的功能。
HandlerProcessor:
@Component @SuppressWarnings("unchecked") public class HandlerProcessor implements BeanFactoryPostProcessor { private static final String HANDLER_PACKAGE = "com.cipher.handler_demo.handler.biz"; /** * 掃描@HandlerType,初始化HandlerContext,將其注冊到spring容器 * * @param beanFactory bean工廠 * @see HandlerType * @see HandlerContext */ @Override public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { Map<String, Class> handlerMap = Maps.newHashMapWithExpectedSize(3); ClassScaner.scan(HANDLER_PACKAGE, HandlerType.class).forEach(clazz -> { // 獲取注解中的類型值 String type = clazz.getAnnotation(HandlerType.class).value(); // 將注解中的類型值作為key,對應(yīng)的類作為value,保存在Map中 handlerMap.put(type, clazz); }); // 初始化HandlerContext,將其注冊到spring容器中 HandlerContext context = new HandlerContext(handlerMap); beanFactory.registerSingleton(HandlerContext.class.getName(), context); } }
ClassScaner:掃描工具類源碼
HandlerProcessor需要實(shí)現(xiàn)BeanFactoryPostProcessor,在spring處理bean前,將自定義的bean注冊到容器中。
核心工作已經(jīng)完成,現(xiàn)在看看HandlerContext如何獲取對應(yīng)的處理器:
HandlerContext:
public class HandlerContext { private Map<String, Class> handlerMap; public HandlerContext(Map<String, Class> handlerMap) { this.handlerMap = handlerMap; } public AbstractHandler getInstance(String type) { Class clazz = handlerMap.get(type); if (clazz == null) { throw new IllegalArgumentException("not found handler for type: " + type); } return (AbstractHandler) BeanTool.getBean(clazz); } }
BeanTool:獲取bean工具類
#getInstance方法根據(jù)類型獲取對應(yīng)的class,然后根據(jù)class類型獲取注冊到spring中的bean。
最后請注意一點(diǎn),HandlerProcessor和BeanTool必須能被掃描到,或者通過@Bean的方式顯式的注冊,才能在項(xiàng)目啟動時(shí)發(fā)揮作用。
總結(jié)
利用策略模式可以簡化繁雜的if else代碼,方便維護(hù),而利用自定義注解和自注冊的方式,可以方便應(yīng)對需求的變更。本文只是提供一個(gè)大致的思路,還有很多細(xì)節(jié)可以靈活變化,例如使用枚舉類型、或者靜態(tài)常量,作為訂單的類型,相信你能想到更多更好的方法。
全部示例代碼請查看:handler_demo
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。