注解实现策略模式

注解实现策略模式

        • [1. 使用idea创建sprignboot项目](#1. 使用idea创建sprignboot项目)
        • [2. 创建策略接口](#2. 创建策略接口)
        • [3. 创建策略类型注解](#3. 创建策略类型注解)
        • [4. 创建两个具体策略类](#4. 创建两个具体策略类)
        • [5. 策略工厂类](#5. 策略工厂类)
        • [6. 使用](#6. 使用)
1. 使用idea创建sprignboot项目
2. 创建策略接口
java 复制代码
public interface Handler {

    Double callPrice(Double price);

}
3. 创建策略类型注解
java 复制代码
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface HandlerType {

    String type();
}
4. 创建两个具体策略类
java 复制代码
@HandlerType(type = "vip")
@Service
public class VipHandler implements Handler{
    @Override
    public Double callPrice(Double price) {
        return price*0.8;
    }
}
java 复制代码
@HandlerType(type="member")
@Service
public class MemberHandler implements Handler{
    @Override
    public Double callPrice(Double price) {
        return price;
    }
}
5. 策略工厂类
java 复制代码
@Component
public class HandlerFactory implements BeanFactoryPostProcessor {

    private static Map<String,Handler> handlerMap = new ConcurrentHashMap<>();
    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        Map<String, Object> handlerBeans = beanFactory.getBeansWithAnnotation(HandlerType.class);
        Optional.ofNullable(handlerBeans).orElse(Collections.emptyMap())
                .forEach((name,bean) -> {
                    Class<?> clazz = bean.getClass();
                    HandlerType handlerType = clazz.getAnnotation(HandlerType.class);
                    handlerMap.put(handlerType.type(), (Handler) bean);
                });

    }

    public static Handler getHandler(String type){
        Handler handler = handlerMap.get(type);
        if (handler == null) {
            throw new RuntimeException("can not find handler");
        }
        return handler;
    }
}
6. 使用
java 复制代码
@SpringBootApplication
public class Application {

    public static void main(String[] args) {
        ConfigurableApplicationContext context = SpringApplication.run(Application.class, args);
        Handler vip = HandlerFactory.getHandler("vip");
        System.out.println(vip.callPrice(1000.0));
    }

}
相关推荐
牛奶咖啡132 天前
学习设计模式《十六》——策略模式
学习·设计模式·策略模式·认识策略模式·策略模式的优缺点·何时选用策略模式·策略模式的使用示例
勤奋的知更鸟2 天前
Java 编程之策略模式详解
java·设计模式·策略模式
FreeBuf_2 天前
朝鲜APT组织使用Nim语言恶意软件对macOS发起隐秘Web3与加密货币攻击
macos·web3·策略模式
暮乘白帝过重山2 天前
设计模式篇:灵活多变的策略模式
设计模式·策略模式
GodKeyNet2 天前
设计模式-策略模式
设计模式·策略模式
守城小轩12 天前
Chromium 136 编译指南 macOS篇:编译优化技巧(六)
macos·策略模式
尤物程序猿12 天前
设计模式之手写策略模式实现动态支付(Java实现)
java·设计模式·策略模式
守城小轩17 天前
Chromium 136 编译指南 macOS篇:Xcode安装与配置(二)
macos·xcode·策略模式
秋田君22 天前
深入理解JavaScript设计模式之策略模式
javascript·设计模式·策略模式
lpfasd12322 天前
策略模式(Strategy Pattern)
策略模式