设计模式
liu1133
这个作者很懒,什么都没留下…
展开
-
eventbus简单例子
这个eventbus,嗯,观察者模式,像redis的发布订阅一样,Talk is cheap. Show me the code. public static void main(String[] args) throws InterruptedException { EventBus eventBus = new EventBus("test"); eventBu...原创 2018-10-29 20:18:56 · 270 阅读 · 0 评论 -
责任链
包commons-chain1.2.jar,责任链描述:避免请求发送者与接收者耦合在一起,让多个对象都有可能接收请求,将这些对象连接成一条链,并且沿着这条链传递请求,直到有对象处理它为止。——引用 代码如下: public class Test { public static void main(String[] args) throws Exception { ContextBas...原创 2018-11-15 22:01:51 · 207 阅读 · 0 评论