Tagged Questions
Spring Webflow is a web-app framework which helps to define the page navigation rules in a intuitive, and reusable way.
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 ...
4
votes
1answer
327 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 ...
3
votes
2answers
1k views
Can Spring Webflow eliminate the need for controller classes?
For a relatively simple application, can Webflow be employed to reduce the need to create form controllers? Well, certainly it can, but I guess what I'm asking is: can and should I write an entire ...
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 ...
2
votes
1answer
560 views
How to execute transition on value change in h:selectOneMenu?
Usually i do something like below. Clicking button execute transition.
<!-- view -->
<h:form>
<h:commandButton action="doit">
<f:ajax render="@form"/>
...
1
vote
0answers
10 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" ...
1
vote
2answers
39 views
How to display server-generated messages in JSF?
I'm currently workin' on a simulation environment build with spring (webflow) and jsf (and primefaces). Within my environment messages are generated when some events are triggered by the server (for ...
1
vote
2answers
93 views
Spring Webflow | Different validate method per transition
I currently have a Spring Webflow application that uses Webflow + Ajax.
I have a view-state called "A" that has several transitions.
<view-state id="A" model="myClass">
<transition ...
1
vote
1answer
327 views
Error JSF 2.1: java.io.FileNotFoundException:*/*.xhtml Not Found in ExternalContext
I have an a error in Jboss 7.0.2 "Arc", spring webflow 2.3.0.RELEASE with richfaces 4.0.0.Final(Myfaces 2.1.1):
12:34:19,729 SEVERE [org.apache.myfaces.renderkit.ErrorPageWriter] ...
1
vote
1answer
573 views
Primefaces Dialog box - show it conditionally. javascript code not working
I want to show a dialog box on the click of a primefaces commandbutton. Before the dialog box , I need to check a condtional.
I am using Spring web-flow 2.3.0.
So I am doing it like this ,
And the ...
1
vote
1answer
169 views
need session variables in valueUnbound?
I am using valueUnbound method of HttpSessionBindingListener to release lock(an entry from the database), before session is about to expire:
@Override
public void ...
1
vote
1answer
461 views
Spring Web Flow 2: problem to save multiple models with one view
I have a form "mandatorydata-change.jsp" where the contact data (name, first name, ...) and the address of the user data must be specified. The contact data have his own table and the address data ...
1
vote
0answers
142 views
Perform additional validation on Spring Webflow MVC View
I'm currently working on an application that has an augmented AbstractMvcView class in its source tree.
The developer that did these modifications is no longer part of the company.
In the ...
1
vote
1answer
153 views
Architecture for Spring Webflow 2 bean definitions
I have a project that uses Spring Webflow 2, extensively. There's well over 30 flows, each with a non-trivial number of beans. I've noticed that the application has been slowly gaining in startup ...
1
vote
1answer
1k views
Ajax call to a method in flow handler - Spring web flow 2.1.1
I have a problem with performing Ajax call inside of flow (created by spring web flow) on a flow handler. Assuming that we are in step 2 of this flow and I would like to call a method on server which ...
1
vote
1answer
2k views
Setting messages.properties in a Spring Webflow unit test
I'm using Spring Web Flow 2.0.7, and just started setting up my unit tests. I've got my flows directory, containing the flow xml files and my messages.properties files on my classpath.
It's ...
1
vote
3answers
2k views
Spring WebFLow Handling Request in JSP
I am newbie to Spring Webflow, I have am using Custom FlowHandler
I can reach the respective Controller, but if set an attribute in a request Object I don't get it in JSP that is View state.
How ...
0
votes
0answers
15 views
Spring webflow - how to pass the session in evaluate expression?
I'm using spring webflow, but I need to access my HttpSession in a method that's accessed using a transition ==> evaluate expression. (so in the xml file containing my flow)
So far I've yet to find a ...
0
votes
1answer
37 views
Is there a way to detect the “back” button for JEE web apps?
Environment:
Spring latest
Using Spring Web flows 2
Spring MVC
Jetty server
In the situation where evoking the webflow with required parameters missing I want to print a message for the developers ...
0
votes
1answer
44 views
Generating jsf checkboxs
I have a multiselect listbox and depending on how many elements user will choose I have to show same number of checkboxes. I'm using jsf and primefaces /spring webflow. How I can do that? Any ...
0
votes
0answers
6 views
Why my spring web flow does not work? (no errors)
I started learning spring web flow but i can't make a project work.
I put a link in my index.jsp file that goes in the flow. The flow starts but when i try to submit a form .... nothing happens.
...
0
votes
0answers
22 views
No transition with converter when selectManyMenu
I am working with Spring Webflow (2.3), and I am having some trouble with the converter and the Flow transition. What I need is a JSF selectManyMenu which take a List of BuisnessObject for value and ...
0
votes
1answer
118 views
Spring Web Flow config for SpringFramework 3.0 or alternatives?
I would like to know, whether spring web flow supports springframework 3 release.
According to the official documentation ...
0
votes
0answers
48 views
How to bind data from an external form to a spring webflow?
Im using Spring webflow 2 with a webflow.mvc.servlet.FlowController.
I want to bind form data submittet (POST) to a flow
directly to the model of this flows view.
When navigating flows and ...
0
votes
0answers
102 views
render fragment with out Tiles and Spring JS : Spring Webflow 2
Is it possible to use the render tag in Spring Webflow without using Tiles or Spring JS? It seems the fragments attribute is tightly coupled to a Tile id?
From my reading, it seems like the ...
0
votes
0answers
42 views
spring webflow: handling flowscoped list property elment removal
I am using Spring webflow 2.3 along with spring 3.0.5 to build wizzard style application.
On one of the steps user is supposed to fill-in some information on cars he/she owns.
After successful form ...
0
votes
0answers
573 views
p:ajax update=“tableName” inside h:selectOneMenu not refreshing the primefaces datatable
I have a primefaces datatable and dropdown. Dropdown is placed outside the datatable.I have wrapped the datatable inside the output panel.
<h:form prependId="false">
...
0
votes
0answers
175 views
How to access output from sub-flow to parent flow - spring-webflow-2.3.0.RELEASE
I have a subflow which is marshalling the classes and posting it to server and then unmarshall the resposne xml.As this is a generic fucntion so I am calling this Infra web-flow from parent flow.
...
0
votes
0answers
19 views
Spring WebFlow and JavaScript
Is it possible to post a java script array to spring web flow(May be to an action class?) ??
Any ideas are appreciated.
0
votes
0answers
217 views
Spring Webflow: How to to customize externalRedirect in end-state?
The parent flow of my webflows has the following end-state defined:
<end-state id="endState" view="externalRedirect:contextRelative:index.html"/>
This will redirect to ...
0
votes
1answer
133 views
Application authentication config with jsf and spring-security
I thinking about solution like this:
different menus for users depend on role which will be included template
proper sec:intercept-url's to access only those pages which are dedicated to role, so ...
0
votes
0answers
52 views
How do I kill all the flows associated with a current user's session?
In Spring Webflow 1 I remember that it was possible to examine the state of a particular user's flows. This would eventually allow for the killing of a user's flows in a programmatic fashion.
...
0
votes
0answers
177 views
No flow definition found
I am getting following error whenever I am adding subflow to a flow xml
org.springframework.webflow.definition.registry.NoSuchFlowDefinitionException: No flow definition 'INFMarshallPost' found
...
0
votes
1answer
479 views
Executing spring web flow transitions using javascript form submit
We are using a combination of facelets and spring web flow in our web project. There are some variables declared in the web flow. I would like to access these variables outside the flow. The reason I ...
0
votes
1answer
215 views
java.lang.NoClassDefFoundError when Moving Spring libraries from WEB-INF/lib to server/default/lib on JBoss AS 6
I'm trying to speedup my build process by moving Spring libraries from WEB-INF/lib to server/default/lib, but unfortunately i get this exception:
Exception sending context initialized event to ...
0
votes
0answers
90 views
Spring Web Flow and JavaScript
Is it possible to use Spring Web Flow 2 with JavaScript frameworks other than Spring JavaScript? For example, with a home grown JavaScript framework built on top of YUI?
If Yes, any idea on how much ...
0
votes
1answer
480 views
Display Images From a file System using Richfaces + Spring Webflow
I am not able to display images from the file system in the xhtmls using <h:graphicImage> tag. I am using Spring webflow 2.0 and Richfaces 3.3.3
Should I write a separate servlet to serve the ...
0
votes
0answers
117 views
Flow controller/ framework for JSF2
We are currently using JSF2 and PrimeFaces to build our web pages. I am interested in implementing a solution to manage multi-page flows. We looked at Spring Webflow and while it seems to do ...
0
votes
1answer
295 views
spring-webflow - maven problem
I am trying to build a simple webapp that uses spring webflow. I am having trouble retrieving the webflow dependency (I'm using maven 3).
<dependency>
...
0
votes
1answer
238 views
Web Flow view resolver problems
I have a sample application with web flows in a number of jars (extensions) and the configuration is loaded from the classpath this works fine. But I'm struggling with the view resolver configuration ...
0
votes
0answers
109 views
Spring WebFlow 2.0: implementation registration pages with several steps
Based on Spring Framework (v2.5) I have to implement for a web registration page with several steps.
The user must give his data (contact data, vehicle data, etc.) that are allocated to different ...
0
votes
1answer
383 views
HttpServletRequest object in Spring webflow?
How to get HttpServletRequest object in FlowController?
I am trying to retrieve request object from getNativeRequest() method,But it is not giving HttpServletRequest object.
...
0
votes
1answer
282 views
Spring-webflow error popup tweak
There is a link in a spring-webflow2 based application which start different flows. Flows are shown in popup (popup=true). If the session is expired or server is unavailable, the spring-webflow shows ...
0
votes
2answers
1k views
Spring Web Flow: How to call static method from <evaluate />?
I need to call static method of org.hibernate.Hibernate class.
How to do that in element of flow ?
0
votes
1answer
333 views
Webflow2: not pre-populating the form on back button
I am new to webflow 2 and I have query regarding the pre-population of the form with previous data on clicking the back botton.
I developed a simple application using webflow 2, in which I fill the ...
0
votes
1answer
218 views
Can I run Webflow 1.0 flows through Spring Webflow 2.1.1?
I have a project built with Webflow 1.0 and Spring 2.0. We'd like to upgrade to Spring 3, but that requires Webflow 2.X.
I've updated all the Spring and Webflow jars in the project, but when I try ...
0
votes
2answers
1k views
No flow definition found. Spring web flow
I am new to Spring webflow and now I am trying the example in Spring recipes book and I know this is a basic question.
I am getting the error as follows,
...
0
votes
1answer
63 views
Customizable Web Applications
At my company we develop prefabricated web applications. While our applications work as-is in many cases, often we receive complex customization requests. We are having a problem in trying to perform ...