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

Reporting statistics in Spring Web Flow

We have an enterprise application using Spring 3.2.8 and Spring Web Flow 2.3.3 deployed on the Websphere 8 server. We wish to report statistics like no. of incomplete flows, the state at which user terminate the flow, time spent at individual states…
user3782437
  • 11
  • 1
  • 3
0
votes
1 answer

Dynamically create flows in Spring Web Flow

We have a huge enterprise application wherein the users navigates through application registration, data entry and finally some results based on the data processing. Currently the navigation logic is handled in java classes; depending on data…
0
votes
1 answer

Transition To Next State Without Any Conditions

I'm a newbie to web flow. It is possible to immediately transition to the next view state without any evaluation or "on" attribute. Current Behaviour The flow should be: (1) showContactForm: user clicks submit (2) the sendingMessage page is…
John Steed
  • 599
  • 1
  • 12
  • 31
0
votes
0 answers

Spring AOP + Spring WebFlow : action execution attributes were 'map[[empty]]'

I have action in webflow as follows, @Component(value = "xyzFlow") public class XyzFlow extends MultiAction { public Event generateOtac(RequestContext context) { .......... .......... return success(); } } And…
Dileepa
  • 1,019
  • 1
  • 15
  • 40
0
votes
0 answers

How can a Spring Webflow application be configured to use Xslt to render its viewstates

I would like my Spring Webflow app to render its views using XSLT. I managed to get a pure Spring MVC app to render with xslt by configuring an XSLTviewresolver and a controller method that returned an already prepared xml as a source. But I'm not…
jgatcher
  • 175
  • 5
  • 12
0
votes
1 answer

Anyone succesfully integrated JSF 2 ViewScoped beans with Spring WebFlow 2?

We have annotated JSF 2 managed beans with @ManagedBean and @ViewScoped. Then in our Spring WebFlow flow.xml files; state change definitions like on-start and on-entry started complaining about it can not find out managed bean in any scope. Jul 22,…
mrtbykkl
  • 1
  • 1
0
votes
2 answers

Spring webflow global transitions, determine the "validate" attribute dynamically

I have a global-transition declared and I would like the value of the "validate" attribute to be conditionned or set in an action-state. Here is how I would like to do it :
maxsoulard
  • 291
  • 1
  • 6
  • 17
0
votes
0 answers

Spring webflow json response validation before Transition

i want to validate my json response from web service,before doing transition to page 2.if json String response have error code it should not go to page 2.
rish1690
  • 281
  • 1
  • 3
  • 13
0
votes
2 answers

In my Spring web flow(SWF), flow can't travel anywhere and show first page again

I am using Spring Web Flow(SWF) for my conversation type page navigation. In that project, there is main flow called candidatemain-flow.xml and have subflow called candidate-flow.xml and matriculation-flow.xml. When I running my project, the main…
Thuta
  • 16
  • 3
0
votes
2 answers

Spring webflow partial validation

I am trying to implement partial validation in Spring Webflow 2.4. According to their reference manual the validation should be done very simply using groups: @NotNull @Size(min = 2, max = 30, groups = State1.class) private String name; In my…
0
votes
2 answers

Spring MVC + Webflow 2 + Thymeleaf fragments: can't configure .HTML extension

I have a Spring MVC application with Thymeleaf configured to use fragments (NO tiles!) and all files have .html extension. Everything is working fine. Now i'm trying to setup Webflow but, when i call my webflow url, i get 404 error as he tries to…
WoutVanAertTheBest
  • 800
  • 1
  • 16
  • 33
0
votes
1 answer

Getting Spring Web Flow to work with IE 7 forms

This is a continuation of this question, refocused after some debugging on Spring Web Flow and the processing of events in Spring Web Flow. I've got a problem with Spring Web Flow and Internet Explorer 7, and also IE 11 in "compatibility mode." …
user3120173
  • 1,758
  • 7
  • 25
  • 39
0
votes
0 answers

Spring WebFlow flow registry inheritance

I have this configuration:
scricci85
  • 43
  • 9
0
votes
1 answer

Customize Flow ID parsing Spring Webflow

Recently I study about Spring Web Flow and I am curious how SWF creates the flow ID from the flow definition files. Below are part of spring documentation about registering flow id based on file location: Use the location element to specify paths…
Chrisma Andhika
  • 321
  • 2
  • 9
  • 19
0
votes
1 answer

Spring Web Flow - Integrate Javascript confirm for a decision

I would like to integrate a javascript dialog into the start of a web flow where the option selected determines if an existing object is added to the flow or a new one is.
solarwind
  • 327
  • 1
  • 3
  • 17