适配器模式在SpringMVC框架应用——Dispatcher源码
SpringMVC的HandlerAdapter使用了适配器模式HandlerAdapter的实现子类使得每一种Controller有一种对应的适配器实现类,每种Controller有不同的实现方式写一个SpringMVC通过适配器设计模式获取到对应的Controller的源码注意:Spring定义了一种适配接口,使得每一种Controller有一种对应的适配器实现类。适配器代替Cont...