grails 中 Spring WebFlow 的继承和子流
Spring WebFlow 支持一些高级重用功能,例如流继承和子流。在 SWF xml 定义中使用此功能非常简单,例如:
<flow parent="parent">
<subflow-state id="addGuest" subflow="createGuest">
Can I use those features with weblflows in Grails? 我可以使用 SWF groovy dsl 定义这些吗? 如何在 grails 中使用 Spring WebFlow 定义?
Spring WebFlow supports some advanced reuse features like flow inheritance and subflows. Using this features in SWF xml definitions is pretty easy, for example:
<flow parent="parent">
<subflow-state id="addGuest" subflow="createGuest">
Can I use these features with weblflows in Grails?
Can I define these using the SWF groovy dsl?
How can I use Spring WebFlow definitions in grails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读 Grails 文档: http://grails.org/doc/1.1.1/guide/6.%20The%20Web%20Layer.html#6.5%20Web%20Flow
Grails 通过 DSL 支持子流,我还没有尝试过继承。
干杯
李
Have a read of the Grails documentation: http://grails.org/doc/1.1.1/guide/6.%20The%20Web%20Layer.html#6.5%20Web%20Flow
Grails supports subflows via the DSL, I haven't tried inheritance.
cheers
Lee