【发布时间】:2014-05-28 19:44:21
【问题描述】:
我正在使用 Spring Web Flow 进行注册过程。我完美地拥有了流程的第一页,但是当我单击应该将您带到第二页的按钮时,我再次获得了流程的第一页。正如您将在代码中看到的那样,我在标签上有 flowExecutionKey,当我单击按钮时它从 e1s1 变为 e2s1,因此我认为它不会引导我进入流程的第二个视图,而是开始一个新流程.
代码如下:
所以,我有这个 flow.xml:
<?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-2.0.xsd" start-state="inicio">
<var name="proyecto" class="myPackage.MyModelClass"/>
<view-state id="inicio" view="inicio" model="proyecto">
<binder>
<binding property="titulo"/>
<binding property="descripcion"/>
<binding property="ciudad"/>
</binder>
<transition on="gotoPageTwo" to="flow2"></transition>
</view-state>
<view-state id="flow2" view="flow2" model="proyecto">
<transition on="gotoPageThree" to="flow3"></transition>
<transition on="goBack" to="inicio"></transition>
</view-state>
<view-state id="flow3" view="flow3" model="proyecto">
<transition on="gotoPageFour" to="fin"></transition>
<transition on="goBack" to="flow2"></transition>
</view-state>
<end-state id="fin" view="final">
</end-state>
这是我的 inicio.jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page session="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link href="/myapp/resources/css/main.css" rel="stylesheet" type="text/css">
<link href="/myapp/resources/css/tcal.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/myapp/resources/scripts/tcal.js"></script>
<title>Paso 1</title>
</head>
<body>
<form method="post" action="inicio.do">
<input type="hidden" name="_flowExecutionKey" value="${flowExecutionKey}">
<label>flowExecutionKey: ${flowExecutionKey}</label>
<table>
<tr>
<td>
<label class="textform">Título del proyecto</label>
</td>
<td>
<input type="text" name="titulo">
</td>
</tr>
<tr>
<td>
<label class="textform">Descripción</label>
</td>
<td>
<input type="text" name="descripcion">
</td>
</tr>
<tr>
<td>
<label class="textform">Ciudad del proyecto</label>
</td>
<td>
<input type="text" name="ciudad">
</td>
</tr>
<tr>
<td>
<input type="submit" value="Siguiente" name="_eventId=gotoPageTwo">
<%--<a href="${flowExecutionUrl}&_eventId=gotoPageTwo&_flowExecutionKey=${flowExecutionKey}"> Siguiente página</a>
<input type="submit" value="Siguiente" name="eventId=gotoPageTwo">
<input type="submit" value="Siguiente" name="${flowExecutionUrl}&_eventId=gotoPageTwo">--%>
</td>
</tr>
如您所见,我尝试发送 gotoPageTwo 的 eventId,如 flow.xml 中所述。
和 servlet-context.xml 上的 Spring web Flow 相关 bean:
<beans:bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<beans:property name="mappings">
<beans:value>inicio.do=flowController</beans:value>
</beans:property>
<beans:property name="alwaysUseFullPath" value="true"></beans:property>
</beans:bean>
<beans:bean id="flowcontroller" class="org.springframework.webflow.mvc.servlet.FlowController">
<beans:property name="flowExecutor" ref="flowExecutor"></beans:property>
</beans:bean>
<webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry"/>
<webflow:flow-registry id="flowRegistry" flow-builder-services="flowBuilderServices">
<webflow:flow-location id="inicio" path="/WEB-INF/flujos/flow.xml"/>
</webflow:flow-registry>
<webflow:flow-builder-services id="flowBuilderServices"
view-factory-creator="viewFactoryCreator"/>
<beans:bean id="viewFactoryCreator" class="org.springframework.webflow.mvc.builder.MvcViewFactoryCreator">
<beans:property name="viewResolvers">
<beans:list>
<beans:ref bean="viewResolver"/>
</beans:list>
</beans:property>
</beans:bean>
<beans:bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
为什么会这样?我的错误在哪里? cmets 中的第一个链接有效并呈现第二个视图,但我认为它不发送表单,所以我没有数据,它是一个链接,而不是一个按钮:
<a href="${flowExecutionUrl}&_eventId=gotoPageTwo&_flowExecutionKey=${flowExecutionKey}"> Siguiente página</a>
其他的cmet都是我试过的,没用。
谢谢!
【问题讨论】:
标签: spring jsp spring-mvc spring-webflow