美文网首页原理和语言
设计模式|菜鸟教程 - C5 J2EE 模式

设计模式|菜鸟教程 - C5 J2EE 模式

作者: 左心Chris | 来源:发表于2019-07-31 15:40 被阅读0次

    --书写中---

    0 Intro

    MVC 模式(MVC Pattern)
    业务代表模式(Business Delegate Pattern)
    组合实体模式(Composite Entity Pattern)
    数据访问对象模式(Data Access Object Pattern)
    前端控制器模式(Front Controller Pattern)
    拦截过滤器模式(Intercepting Filter Pattern)
    服务定位器模式(Service Locator Pattern)
    传输对象模式(Transfer Object Pattern)

    1 MVC 模式(MVC Pattern)

    model view controller


    controller = new StudentController(model, view);
    controller.updateView();
    controller.setStudentName("John");
    controller.updateView();
    

    2 业务代表模式(Business Delegate Pattern)

    3 组合实体模式(Composite Entity Pattern)

    4 数据访问对象模式(Data Access Object Pattern)

    前端控制器模式(Front Controller Pattern)

    拦截过滤器模式(Intercepting Filter Pattern)

    服务定位器模式(Service Locator Pattern)

    传输对象模式(Transfer Object Pattern)

    相关文章

      网友评论

        本文标题:设计模式|菜鸟教程 - C5 J2EE 模式

        本文链接:https://www.haomeiwen.com/subject/azbrrctx.html