zoukankan      html  css  js  c++  java
  • Spring----->projects----->Spring Web Flow

    1.概述(about Spring Web Folw)

      • Spring Web Flow是spring社区一个子project
      • Spring Web Flow builds on Spring MVC 
      • Spring Web Flow的特色功能是:它实现了web apllication的“流”。类似于业务流程引擎(Activiti)的功能,将一系列的业务处理阶段封装成一个工作流,引导系统的使用者(也即用户)顺着封装好的“工作流”一步步完成每个阶段的任务(task),最终到达工作流程的尾部,整个流程结束。A flow spans【跨越】 multiple HTTP requests, has state【拥有状态】, deals with transactional data【处理事务数据】, is reusable【是可重用的】, and may be dynamic【动态的】 and long-running in nature.. 
      • Spring Web Flow的应用场景
        • Spring Web Flow适用于开发拥有如下特征的web application:
          • There is a clear start and an end point.
          • The user must go through a set of screens in a specific order【特定的顺序】.
          • The changes are not finalized until the last step.
          • Once complete it shouldn't be possible to repeat a transaction accidentally
        • 一些实际应用场景(Spring Web Flow的应用实例)
          • checking in for a flight,
          • applying for a loan,
          • shopping cart checkout,
          • adding a confirmation step to a form.  

    2.Spring Web Flow Reference

    3.Spring Web Flow应用实例

    学习的过程中总会得到一些心得体会,认真地将它们记录下来并分享给每一个愿意花费时间去阅读它们的人,然后意外地收获某个读者的评论,从而激发出新的感想,是一件十分令人欢快的事。如果你也在研习这方面的知识,欢迎加入到我们的队伍中来,和我们一起进步吧(^_^)
  • 相关阅读:
    端口被占用
    启动Windows防火墙提示“0x8007042c"
    vue创建全局组件
    vue中过度动画之列表添加删除动画实现
    vue中过渡动画(类名结合动画实现方式)
    vue中过渡动画(类名实现方式)
    this.$nextTick()方法的使用
    利用axios获取数据并渲染到视图层
    axios的简单使用
    watch深度监听
  • 原文地址:https://www.cnblogs.com/lxrm/p/6207278.html
Copyright © 2011-2022 走看看