roy

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  1 随笔 :: 5 文章 :: 0 评论 :: 0 Trackbacks

View Helper(视图帮助)
        视图帮助类,将数据库中的原数据组装成页面所需要的元素,作用:
                1.处理元数据;
                2.视图数据和业务层数据模型适配;
                3.和业务代理模式结合进一步隐藏业务实现;
                4.包含值对象。
       视图帮助可以是JAVABEAN,也可以是TAGS、SERVLET、JSP。
       一个例子

/**A servlet delegates to a command object helper, as
shown in the following excerpt:*
*/

String resultPage 
= command.execute(request,
response);
/**The command object helper uses the business
delegate, which is simply implemented as another
JavaBean helper, as shown in the following excerpt:*
*/

AccountDelegate accountDelegate 
= new
AccountDelegate();
posted on 2005-09-09 10:31 风萧萧 阅读(217) 评论(0)  编辑  收藏 所属分类: J2EE Patterns

只有注册用户登录后才能发表评论。


网站导航: