The Web Flow module is a Spring MVC extension that allows you to define Controllers using a domain-specific-language. This language is designed to model user interactions that require several requests into the server to complete, or may be invoked from different contexts.
13
votes
4answers
12k views
How to implement login page using Spring Security so that it works with Spring web flow?
I have a web application using Spring 2.5.6 and Spring Security 2.0.4. I have implemented a working login page, which authenticates the user against a web service. The authentication is done by ...
11
votes
3answers
8k views
How to use multiple ViewResolvers in Spring?
I am working on a web app where I have most of my pages making use of apache tiles (2.1.2), but a few of them need to just be plain jsps.
I am having a problem in that both an ...
10
votes
2answers
2k views
Spring Web Flow 3 Development Abandoned?
Does anyone have any information on Spring Web Flow 3 status?
Here are a few relevant links that support my sense that springsource has essentially abandoned the project:
1)Official roadmap ...
9
votes
3answers
4k views
Can i use Spring on GAE?
Can i use Spring Webflow/MVC and Spring Security and Hibernate on Google App Engine?
Is there a list/summary of java frameworks that can be used on the GAE?
9
votes
2answers
1k views
Spring “typemismatch” and required fields
In the context of Spring Webflow 2.0.x......
I handle form binding "typemismatches", i.e. as a result of trying to map a String onto a Integer field, by using the following in my messages.properties
...
8
votes
3answers
2k views
When does it make sense to use Spring WebFlow on top of Spring MVC?
Spring MVC has become a very popular framework for building enterprise web applications. Any complex web application has certain flows that need to be coded, including some conditional flows (i.e., ...
7
votes
1answer
800 views
How can I define a custom message source for a spring web flow?
The spring webflow documentation mentions that their way of adding messages to a flow is to define all messages regarding that flow in a file messages.properties inside the flow:
Internationalized ...
7
votes
3answers
130 views
Simple Variable in Web Flow
I've different view-state's in flow.xml. All of theses states have the same view. Now i want to set a variable which includes just a String und call it in the view-file to customize the content.
Here ...
7
votes
2answers
507 views
Validate to see if form has changed
I am writing a validator which needs to test if a spring form object has changed.
In the validator if no changes have been made to the form, an error should be displayed.
Is there a spring mechanism ...
6
votes
3answers
336 views
Is there a tool to visualize a grails webflow?
As I am writing my first grails webflow I am asking myself if there is anyy tool or script what can visualize the flow?
Result can be a state diagram or some data to render in a graph tool like ...
6
votes
2answers
718 views
Unit testing nested subflows (subflows of subflows)
I'm trying to write unit test for a flow, which has subflow, which, itself, has another subflow.
I register first flow using
FlowDefinitionResource getResource(FlowDefinitionResourceFactory ...
5
votes
1answer
3k views
How to define general/fall-back error page in web.xml
My Java web app currently maps certain error codes to an error servlet (spring web flow, actually, but that should be besides the point), by doing this in web.xml:
<error-page>
...
5
votes
3answers
8k views
Integrating Spring Webflow 2 and Apache Tiles
I've recently started upgrading some applications to use Spring Webflow 2, and I want to make use of the new Ajax functionality that comes with Webflow 2. Can somebody please direct me to a tutorial ...
5
votes
1answer
1k views
Display info messages in jsp for Spring WebFlow 2.0
I have a model with a list of selected topics. Every topic can be presented in a room and there are more rooms that need to be chosen depending of availability. The user can set preferred room for ...
5
votes
3answers
2k views
How to change default format in StringToDate? Spring WebFlow
Default date format in Spring WebFlow is "yyyy-MM-dd".
How to change to another format? "dd.mm.yyyy" for example. Thx.
5
votes
2answers
236 views
How to implement a complex page flow in a Java Web application
I am trying to implement a reasonably complex page flow (100+ pages) as a traditional web application. I found a few options, but none of them are 100% convincing
Hand code the flow into the ...
5
votes
1answer
1k views
Spring Web Flow LockTimeoutException
We are using Spring Web Flow (2.0.9) in the Weblogic 10 clustured environment. And in production we are getting a lot of LockTimeoutException : Unable to acquire conversation lock after 30 seconds.
I ...
4
votes
2answers
3k views
Benefits to using Spring EL over OGNL?
I was wondering what exactly moved Spring to use Spring EL over OGNL in its web flow product:
...
4
votes
2answers
3k views
Spring Webflow - access exception using transition.on-exception attribute
I wondering how can I access exception object using on-exception attribute?
My current configuration looks like this:
<transition on-exception="{business_exception}" to="errorView" >
...
4
votes
1answer
2k views
Spring Web Flow - How can I set up unit test with values already in conversationScope?
I am working on a project using Spring Web Flow 2.0.
I am trying to unit test a flow that begins with a decision state. The decision state checks the value of an object that is on the ...
4
votes
1answer
2k views
Spring Webflow Best Practice
I have a java web application which uses spring webflow as framework. I have a problem with processing data on a plain flow xml. When the processing gets more complicated I find it hard to implement ...
4
votes
1answer
374 views
Login/logout in REST with Spring 3
We are developing RESTful webservices with Spring 3 and we need to have the functionality of login/logout, something like /webservices/login/<username>/<password>/ and /webservices/logout. ...
4
votes
2answers
155 views
Preferred alternative to creating a new object in Spring Webflow
I am currently working with Spring 3.1.2 (webflow version 2.3.1) and I'm facing an older problem once again. The problem is creating a new object via Spring webflow. So what I'd like to do is ...
4
votes
1answer
2k views
Ajax + Spring Webflow
First, I am using spring webflow and some spring javascript to make ajax calls easier.
As of right now, I am having ajax make a call into webflow to display the appropriate fragment.
So I am ...
4
votes
1answer
197 views
Grails WebFlow DRY Branching Logic
Grails WebFlow noob here...
One state in my WebFlow receives two events that need to trigger the same action and then transition to separate states if that action is successful. My initial attempt ...
4
votes
2answers
2k views
Prevent Cross-Site Request Forgery in a Spring WebFlow Application
I'm looking for a (hopefully straightforward) way to add CSRF protection to an application build on Spring WebFlow 2.
An approach that migrates well to Spring WebFlow 3 (when released) is preferred.
4
votes
1answer
223 views
Spring Webflow DataBinding to immutable objects via a constructor?
Is there any way of using an immutable object as a model within a view-state in Spring webflow? I know Spring webflow generally tends towards setters for this kind of thing, but I was wondering if ...
4
votes
2answers
708 views
Unable to locate Spring NamespaceHandler for element 'flow'
I am developing a spring webflow (2.0.7) project using SpringSource Tool Suite. I am trying to setup a basic flow.
My someflow.xml looks like this:
<flow ...
4
votes
2answers
2k views
grails web flow exception handling
In my Grails app, I have defined the following (simplified) web flow
def registerFlow = {
start {
action {RegistrationCommand cmd ->
try {
...
3
votes
2answers
118 views
Why Set doesnt work in web flow and Primefaces
I get call in a flow a method which returns a HashSet of Person back. Then i call the Set in my xhtml file with the Primeface-dataTable. Now i want to display the prename of the person, but a error ...
3
votes
1answer
3k views
spring webflow: redirect in end-state depending on some input
I have in my flow some input, i.e.
<input name="someInput" type="long" required="true"/>
and I'd like to redirect in an end-state to a location that depends on this input. I'm trying the ...
3
votes
1answer
3k views
Spring Security : Bypass login form
I want to bypass the login form for a Spring webflow (Spring 2.0.5) application under certain scenarios (so the login form is presented for normal users but when the URL is like ...
3
votes
1answer
1k views
Spring webflow 2.3.0 - How to get flowExecutionKey in form action method?
I have some code in a form action class that needs to get the flowExecutionKey from the RequestContext. I can't seem to find any documentation on how to do this. My class looks something like this:
...
3
votes
3answers
3k views
How to redirect Spring security concurrent session control 'message' on login screen?
I have web application, in which I have used Spring framework.
For the concurrent session control I have use spring feature where only 1 logged in session will be maintained for 1 user as soon as that ...
3
votes
2answers
6k views
how do I register a custom conversion Service in spring 3 / webflow 2?
I've been trying to follow this example and using the reference to guide me, but I'm having no luck.
I've defined a converter:
import org.springframework.binding.convert.converters.StringToObject;
...
3
votes
1answer
1k views
Data Binding Error Handling in Spring MVC
I have a question about data binding in Spring MVC.
I have a Controller which accepts a JSON request in the form of @RequestBody. I have all the JSR 303 validations in place and it works like a ...
3
votes
1answer
1k views
Spring Webflow binding: Converter - java.lang.IllegalArgumentException: Each converter object must implement one of the Converter … interfaces
I have the following code in one of the Spring's XML config files:
<mvc:annotation-driven conversion-service="conversionService" />
<bean id="conversionService" ...
3
votes
1answer
695 views
Disadvantages of using JSF+Spring without webflow
in following examples of JSF Spring integration, i can see that the examples makes a normal integration between spring and JSF without using webflow, so is there are any problems or issues when using ...
3
votes
1answer
10k views
Spring Webflow : how do I pass an attribute from one flow to another during a transition?
I have an action-state that evaluates an expression and then transitions to various other states depending on the result. One of the result states is a subflow-state that hands control to another ...
3
votes
3answers
4k views
Spring MVC - Web Flow Controller
I have a j2ee application developed using spring framework and spring webflow. Currently all of my url requests go through the Web Flow. What I want is to be able to choose whether to direct it to Web ...
3
votes
1answer
66 views
How Does Spring MVC handle responses
I use Spring MVC and webflow. There are time where I am obliged to write to the response object directly. Specifically I have a keep-alive class that continuously sends an empty response back to the ...
3
votes
1answer
606 views
Configure Spring Web Flow with Java configuration
I am using Spring 3.1 and want to include Spring Web Flow 2.3. One thing I really like about Spring is that you can leave off the XML configuration in favour of Java-only configuration using ...
3
votes
1answer
758 views
Grails web flow previous state url
is there a simple way to get previous state's URL (or flowExecutionKey is sufficient) in Grails web flow? I can get current flowExecutionKey from request['flowExecutionKey'].
Or alternatively is ...
3
votes
1answer
4k views
How do I pass model data beween a view state and action state in Spring Web Flow 2
In the Web Flow below I bind form data to a flow variable (lifeCycleForm) on a submit event in the view state. I have verified that the name, label and description properties are all populated as ...
3
votes
1answer
174 views
Primefaces: Exclude column from row selection in p:dataTable
I've got problem with p:dataTable and excluding a column from single row selection.
I have 4 columns in my dataTable. First 3 are needed to display fileId, fileName and uploadDate. In 4th column ...
3
votes
1answer
167 views
How to combine Spring web flow, Spring Security and a HandlerExceptionResolver like SimpleMappingExceptionResolver?
I have a SimpleMappingExceptionResolver to redirect every unhandled exception.
@Bean public SimpleMappingExceptionResolver exceptionResolver() {
SimpleMappingExceptionResolver resolver = ...
3
votes
1answer
210 views
Spring PrimeFaces selectOneMenu submit send me to 405 - Request method 'POST' not supported
I've got very painful problem. Could not find solution on web.
I'm using Spring 3.0 with JSF and PrimeFaces Spring Security is configured, also have configuration for Spring Web Flow (but I'm not ...
3
votes
2answers
262 views
MaxUploadSizeExceededException handled but file is STILL uploaded?
So I'm using Spring Webflow to upload a file and the CommonsMultipartResolver with a max file size param.
When the max file size is exceed the CommonsMultipartResolver throws a ...
3
votes
1answer
639 views
Spring webflow second popup problem
I have 1st popup, and this 1st popup opens 2nd popup
Code:
<view-state id="paneMaintenance" parent="#pe-cards" model="model">
<transition on="task-view" ...
3
votes
1answer
2k views
How to configure Spring and Apache Tiles definitions to resolve jsps from classpath
This one's not very short, so please bear with me.
I'm developing a web app with Spring 3.0, Apache Tiles 2.2 and Spring WebFlow 2.2. One important requirement is that it needs to be very modular, ...

