标签:需要 使用 实现 容器 方法 http 耦合 https 模式
1). why
需要改变从 Servlet 容器 (可能是任何的 Servlet 容器)中传入的 HttpServletRequest 对象的某个行为,该怎么办?
一. 继承 HttpServletRequest 接口的 Servlet 容器的实现类,但就和具体的容器相耦合了
二. 提供 HttpServletRequest 的实现类,很麻烦,而且也需要和具体的容器相耦合
三. 使用装饰器设计模式:
> 提供一个类,该类实现 HttpServletRequest 接口;
> 把容器实现的 HttpServletRequest 接口的实现类作为上述类的一个成员变量;
> 使用 HttpServletRequest 成员变量来实现 HttpServletRequest 接口的所有方法
标签:需要 使用 实现 容器 方法 http 耦合 https 模式
原文地址:http://www.cnblogs.com/xiluhua/p/6786418.html