简单Webflow配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单Webflow配置相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="UTF-8"?> <flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-1.0.xsd"> <start-state idref="enterVoterInfo"/> <view-state id="enterVoterInfo" view="webflows/voting/enterVoterInfo"> <transition on="next" to="enterPartyInfo"/> </view-state> <view-state id="enterPartyInfo" view="webflows/voting/enterPartyInfo"> <transition on="previous" to="enterVoterInfo"/> <transition on="next" to="enterVote"/> </view-state> <view-state id="enterVote" view="webflows/voting/enterVoteInfo"> <transition on="previous" to="enterPartyInfo"/> <transition on="next" to="confirmState"/> </view-state> <end-state id="confirmState" view="webflows/voting/confirmVote"></end-state> </flow>
以上是关于简单Webflow配置的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法在 webflow 的文本中插入图像/图标/形状?
使用spring webflow,在前台页面中如何显示后端返回的错误信息