Tagged Questions
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.
10
votes
4answers
4k 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 ...
7
votes
4answers
2k 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?
6
votes
2answers
222 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
1answer
323 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
147 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 ...
5
votes
3answers
519 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., ...
4
votes
1answer
325 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
1answer
1k 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
2answers
3k 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 ...
4
votes
3answers
6k 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 ...
3
votes
1answer
134 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
2answers
1k 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:
...
3
votes
0answers
392 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
...
3
votes
2answers
696 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.
3
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 ...
3
votes
1answer
3k 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 ...
2
votes
1answer
47 views
Spring WebFlow - NullPointerException in setter method - how to handle nicely
Is there a magic value to place in messages.properties to capture the error condition where a NullPointerException is thrown during a setter method, In the same way there is ...
2
votes
5answers
114 views
Confused about rich framework to be used with spring
my requirement is to develop rich web applications quickly and easily, and the framework must be easy/compatible with spring something like IceFaces
i am confused about IceFaces/PrimeFaces, or use ...
2
votes
0answers
85 views
Ruby on Rails: Need Recommendations for Wizards/Spring Webflow-type Solutions
I'm starting work on a multi-page web application using Ruby on Rails 3. My webapp won't be using a database directly - it'll be calling a web service to persist the collected information.
Are there ...
2
votes
1answer
368 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, ...
2
votes
1answer
461 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 ...
2
votes
1answer
115 views
harmony between webflow and Spring MVC Controllers
Spring 2.5.6SEC02
Spring Webflow 2.0.9
I have a normal flow in which I have a form in flow scope. I now want to call my annotated spring MVC @Controller and get access to the form information. I ...
2
votes
2answers
1k views
java.lang.UnsupportedOperationException at javax.faces.context.FacesContext.isReleased(FacesContext.java:609)
I am integrating SWF 2.2.1,Primefaces 2.2.1,JSF 2,Spring Security 3,Spring 3.1.0M1.
I am able to hit my first page mentioned in Spring web-flow xml, but getting following error.
...
2
votes
1answer
944 views
Spring Web Flow and Url Rewrite Filter - cleaning URLs
I'm working on Spring MVC + Web Flow web application. I have mapped /home to MVC Controller and /test to Flow Controller. To remove /app from URLs i'm trying to use Url Rewrite Filter.
Mappings in ...
2
votes
1answer
230 views
Spring WebFlow - problem with rest mapping
I have problem with mapping in Spring Webflow 2.3.0
I got error when I want to excute:
http://localhost:8090/myWebApp/register/other
http://localhost:8090/myWebApp/verify or
...
2
votes
1answer
131 views
Webflow in php language
I recently developed a web application in JEE with Spring framework. I also used the Spring webflow project to define my flow (a strict navigation that user must follow to access certain pages, eq: ...
2
votes
1answer
657 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 ...
2
votes
1answer
959 views
Spring Webflow , Primefaces with Comet (Atmosphere)
Thinking to start a project using Spring Web Flow with Primefaces. I need to use comet so i figured Primefaces uses Atmosphere. I'm not really experienced with the Atmosphere / Comet business so any ...
2
votes
3answers
569 views
Variable lookup parameter for resourceBundle?
I'm currently using the resourceBundle variable to get text values in my JSF code e.g. like this:
<h:outputText value="#{resourceBundle.welcomeMessage}" />
Is there any way, to put the ...
2
votes
1answer
3k 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 ...
2
votes
2answers
1k views
How can I serve binary content from a JSF/Webflow app?
I have a JSF 1.2/Spring Web flow 2.0.7 app that need to serve binary content (an image). This content is fetched from a web service (along with some other data) as a Base64-encoded string, and ends up ...
2
votes
2answers
433 views
Is Spring Webflow suitable for async. flows?
I've got my first impression of Spring WebFlow 2.1 from studying the reference app and reading the manual. Before going further, I would like to ask for the impression of this community.
Actually, I ...
2
votes
1answer
662 views
Spring webflow 1.0 - Downloading a file
I am using spring webflow 1.0. I am uploading a csv file, parsing it, and displying results before proceeding. The user has an option to download a csv file that contains the records that did not pass ...
2
votes
1answer
3k 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;
...
2
votes
1answer
651 views
Bookmarkable URL in JSF application - Trying to use Spring Webflow and JSF . Any suggestions?
Our application is JSF , hibernate & Spring. Currently the url is in following format
...
2
votes
2answers
805 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.
2
votes
1answer
307 views
Can Spring Webflow define beans within flow.xml definitions?
I'm defining a lot of flows and each of my flows has a lot of actions within its states.
The namespace seems to be getting fairly crowded now, so I'm wondering if it's possible to define the spring ...
2
votes
1answer
117 views
Spring web flow not being followed between pages on chrome
I have a two page flow made with spring web flow (version 1.0.5). It works ok in Firefox, but in Chrome I can't go to the second page, as
...
2
votes
2answers
2k views
Spring webflow : Move through view states
Within a spring webflow, i need to implement a navigation bar that will allow to "step back" or resume the flow to one of the previous view.
For example :
View 1 = login
View 2 = My informations
...
1
vote
0answers
25 views
Web Flow Ignores STATE_SAVING_METHOD_CLIENT for JSF Views?
I have a web app that is using Spring Web Flows with Facelets as the view technology. I have set the context param
<context-param>
...
1
vote
0answers
24 views
Spring webflow 'Property not found' exception
I am using spring webflow, this is my flow
<view-state id="welcome">
<transition on="emailEntered" to="checkEmail"></transition>
</view-state>
<decision-state ...
1
vote
0answers
25 views
Webflow Tiles Issue
All,
We have implemented spring using tiles and everything works great so far.
I have 2 issues so far:
1)
I however do not like the idea of defining a new definition every time a new jsp is ...
1
vote
1answer
23 views
Spring Security access denied error (403) for authenticate user
I have a strange problem with spring security. There's an application (.war file) on the jboss server using spring security and spring web flow. Everything works fine until I run (though maven) a ...
1
vote
1answer
28 views
How to implement conditional transitions in Spring Webflow
Just getting the hang of Spring Webflow. I have some simple forms working and binding back and forth - very cool. One thing not obvious to me at the moment is how to dynamically launch a flow based ...
1
vote
2answers
48 views
Rendering only a fragment of the page
I need to implement a web application with a Menu (Tab View) on top where each tab renders the content area without rendering the whole page. How can I do it in a modular way?
I want each content ...
1
vote
0answers
93 views
updating an object in spring webflow not showing up on the UI
I'm really getting confused because I'm pretty new to this whole topic. I'm currently developing a project using spring webflow. In my webinterface a user has to type in a username that is than ...
1
vote
0answers
57 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 ...
1
vote
0answers
77 views
java.lang.UnsupportedOperationException: Implement SWF integration when using <ice:form>
i was defining menubar as follows:
<ice:menuItem value="menuItem" style="float:right" ></ice:menuItem>
<ice:menuItem value="menuItem2" style="float:right" ...
1
vote
1answer
131 views
Form Submit using a Javascript to invoke webflow transition, doesn't take the updated value on form
I am trying to invoke a form submit using javascript (jquery) to invoke a webflow transition. It works and the submit invokes the desired transition. But, the updated radio button values is not ...
1
vote
1answer
127 views
How to use annotation to replace mvc:resources namespace
I am building a project using annotation to do the configuration job.
And when I doing this, I cannot find a way to use annotation to replace mvc:resources namespace tag.
I can provide an example ...