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应用实例

    学习的过程中总会得到一些心得体会,认真地将它们记录下来并分享给每一个愿意花费时间去阅读它们的人,然后意外地收获某个读者的评论,从而激发出新的感想,是一件十分令人欢快的事。如果你也在研习这方面的知识,欢迎加入到我们的队伍中来,和我们一起进步吧(^_^)
  • 相关阅读:
    Class.forName和ClassLoader.loadClass的区别
    数据库连接池优化配置(druid,dbcp,c3p0)
    MySQL在默认事务下各SQL语句使用的锁分析
    ArrayList vs LinkedList 空间占用
    MySQL锁详解
    利用ConcurrentHashMap来实现一个ConcurrentHashSet
    list与Set、Map区别及适用场景
    实现一个原子的正整数类:AtomicPositiveInteger
    mysql如何处理亿级数据,第一个阶段——优化SQL语句
    java性能优化
  • 原文地址:https://www.cnblogs.com/lxrm/p/6207278.html
Copyright © 2011-2022 走看看