Questions tagged [spring-webflow-2]

Spring Webflow is a web-app framework which helps to define the page navigation rules in a intuitive, and reusable way.

Spring Web Flow is a Spring MVC extension that allows implementing the "flows" of a web application. A flow encapsulates a sequence of steps that guide a user through the execution of some business task. It spans multiple HTTP requests, has state, deals with transactional data, is reusable, and may be dynamic and long-running in nature.

296 questions
0
votes
1 answer

Web Flow crashes on appended variable

I'm currently facing a problem using Spring Web Flows 2.0.7, the webflow crashes, when a variable is submitted. The corresponding webflow looks like this:
Robert Heine
  • 1,820
  • 4
  • 29
  • 61
0
votes
1 answer

Barebonds Hello World Example with Security

I am trying to setup a Barebonds Hello World Example with Security. But I keep getting a error. Here is my web.xml:
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

Spring Web Flow transitions not triggered

I am using Spring Web Flow 2 and am having a basic problem getting my transitions to appropriately fire. I have done a lot of searching on the internet and have been unable to find an in-depth explanation of how transitions are triggered from the…
stephen.hanson
  • 9,014
  • 2
  • 47
  • 53
0
votes
2 answers

How to go about testing decision-state in Spring WebFlow

I'm trying to find the best way to unit test decision-states within a Spring WebFlow context.
Vantage
  • 41
  • 3
0
votes
1 answer

AJAX for Spring webflow and JSP

I would like to add an JavaScript autocomplete functionality to a web form I am working on. I'm using NetBeans 7.1, Spring Framework 3.0.6 and Webflow 2.3. If possible, I would prefer to use JSP (rather than Tiles) if possible. If you could…
RobH
  • 1
  • 5
0
votes
1 answer

spring webflow2 - no reaction after submit

I'm experiencing a strange problem in Spring Webflow 2: I have three states inside my flow: 1) form to fill 2) confirmation page 3) action-state to save the model The first state works perfectly, no problem The second state does not reply to any…
MarcoAbi
  • 61
  • 1
  • 6
0
votes
1 answer

Spring webflow 2 binding: nested object do not follow flow rule

I have an object that has a nested one that is binded in the same view: class MyForm{ private String var1; private String var2; private MyNestedForm nested; } class MyNestedForm{ private String var3; } and in my jsp:
MarcoAbi
  • 61
  • 1
  • 6
0
votes
1 answer

Why isn't webflow updating my model object?

I'm setting up an application using Spring Webflow 2, and I'm running into a problem. The app takes in a reservation on one page and then allows for payment on another page. The reservation model object works fine; I can fill out the form, submit…
Travelsized
  • 111
  • 3
  • 11
0
votes
1 answer

Spring WebFlow do not trigger evaluate expression on state transition

I am using Spring 3.x and WebFlow 2.0. I am trying to submit the form with a new event id.
Vishal
  • 11
  • 5
-1
votes
1 answer

How to skip pages using the browser's back button in spring webflow?

I'm working on a project where we are requesting data from an external source, and using data from the response. The webservice call to the external source is in a view state (lets say viewstate1) that will transition to another view state…
-1
votes
1 answer

Webflow binding failure

I'm trying to add a Forgot Password path to an existing view. I created a new view, action, model bean, and some states in my webflow. Instead of seeing the view, I keep getting the error java.lang.IllegalStateException: Neither BindingResult nor…
Eric Stein
  • 13,209
  • 3
  • 37
  • 52
1 2 3
19
20