快速业务通道

用Spring Web Flow和Terracotta搭建Web应用 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19
nterCategory" view="categoryForm">      <transition on="submit" to="requiresShipping">          <action bean="formAction" method="bind"/>      </transition>     </view-state>     <decision-state id="requiresShipping">       <if test="${flowScope.sale.shipping}" then="enterShippingDetails" else="processSale"/>     </decision-state>     <view-state id="enterShippingDetails" view="shippingDetailsForm">      <transition on="submit" to="processSale">          <action bean="formAction" method="bind"/>      </transition>     </view-state>     <action-state id="processSale">      <bean-action bean="saleProcessor" method="process">          <method-arguments>            <argument expression="flowScope.sale"/>          </method-arguments>      </bean-action>      <transition on="success" to="finish"/>     </action-state>     <end-state id="finish" view="costOverview">       <entry-actions>        <action bean="formAction" method="setupForm"/>       </entry-actions>     </end-state>     <import resource="sellitem-beans.xml"/> </flow>

在定义导航逻辑之外,也定义了适时调用恰当应用行为的action。这包括处理用户提交事件和调用后台处理器来处理sale的逻辑。

Form绑定和验证

当进入展示表单的视图状态时,流转调用一个FormAction command bean来进行表单的装配和提交逻辑。在提交时,FormAction把用户的请求参数绑定到相应的sale属性上并同时验证它们。

<bean id="formAction" class="org.springframework.webflow.action.FormAction">     <property name="formObjectName" value="sale"/>     <property name="validator">      <bean class="org.springframework.webflow.samples.sellitem.SaleValidator"/>    </property> </bean>

更多信息

Spring Web Flow全部的代码、文档和10个示例应用(包括sellitem)都可以在Spring网站上找到http://www.springframework.org/webflow。

集群Sellitem应用

现在我们已经看过了如何使用Spring Web Flow来实现一个有状态web应用。接下来让我们更高兴的看如何给我们的示例应用启用高可用性和故障恢复,如何使用Terracotta for Spring进行集群来提供透明容错性和在节点间共享状态。

听上去很难? 你会发现这实际上很简单。

用Spring Web Flow和Terracotta搭建Web应用(6)

时间:2011-02-05 infoq Jonas Bonér & Eu

声明式配置

Sellitem示例应用使用一个Sale类的实例来保存当前销售的会话数据;同样Spring Web Flow executor repository 也使用HTTP session 来保存所有的会话数据。

要使用Terracotta for Spring,我们需要确保为给定的web应用启用了HTTP session集群,包括所有可能被

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号