Tagged Questions
11
votes
4answers
5k 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
231 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
340 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
3answers
562 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
0answers
421 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
...
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 ...
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
2answers
738 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
78 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" ...
2
votes
0answers
74 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 ...
2
votes
1answer
58 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
1answer
130 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
269 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
3answers
613 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
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
457 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
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
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
33 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
109 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
1answer
211 views
URL in popup JSF
i have following scenario
first i need to send request to back end,that will return a URL..i need to open the URL in the
popup.. i am confused for this
i have tried opening popup both using the ...
1
vote
1answer
463 views
popup=“true” not working with in Spring webflow 2.3.0 for JSF 2.0 environment
My issue is that I am not able to show popup using spring webflow.I have a screen A , where based on a particular flag, I want to show a pop-up B on clicking of a command button(primefaces or Spring ...
1
vote
1answer
191 views
Accessing Spring WebFlow EL variables from Javascript
I try to find a way to access SWF special EL variables, such as a flowScope, and a custom variables, set in custom-flow.xml, from the Javascript. But I haven't find solution yet.
I am using Sping ...
1
vote
1answer
435 views
Spring/Webflow problem with validation
Problem with validation
I would have run the validation when the method "registered"
In webflow:
...
<transition on="registered" to="registeredAction" bind="true" validate="true" />
...
My ...
1
vote
2answers
581 views
Differences when running Tomcat from within Intellij IDEA?
I have a very bizarre problem with a Spring 3.5, Webflow 2.2 application, running in Tomcat (6.0.32)
Part of the webflow calls to retrieve a list of objects. This list is placed in a viewScope ...
1
vote
2answers
458 views
Question about solution
I have two flows configured in the following way:
<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns="http://www.springframework.org/schema/webflow"
...
1
vote
1answer
851 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>
...
1
vote
0answers
137 views
How to execute task and show it's progress in spring web flow
I have to automatically execute task and show it's progress to the client when flow is intered.
When task is finished, it should redirect to another flow.
Progress should be shown by PrimeFaces ...
1
vote
1answer
310 views
How is Spring MVC different from Spring Web Flow?
I have to build the online ecommerce website using Java. As I want to use AJAX libraries like jQuery/prototupe/moottols, someone told me to go for Request/action based frameworks as I am from web ...
1
vote
1answer
954 views
How to configure spring webflow with jsf 2.0?
I have a problem integration JSF2.0 as a view technology to spring webflow.
I managed to get it "almost" working, the only thing left is configuring ajax support for JSF2.0.
Ajax requests are sent, ...
1
vote
1answer
445 views
How to call server side action method just before submitting form to 3rd party url?
Ok, I'm using Spring Webflow and I currently have a flow that involves two jsp pages (views), the second of which submits a form to a 3rd party system (payments).
In my pay-flow.xml I have states ...
1
vote
1answer
168 views
How can I make WebFlow abort the transitioning and just view the previous page when validation fails?
I have a Spring WebFlow app that causes me grey hairs. What I'm trying to accomplish if validation succeeds is to simply show the same view with different data. This works. However, when invalid data ...
1
vote
0answers
281 views
Why is my web page expired after Spring WebFlow redirects?
I'm using Spring WebFlow 2. Here's my situation.
View states: state1, state2
Transitions: state1 goes to state2 if validation passes
state2 pops up a new window using the following:
...
1
vote
2answers
465 views
Webflow 2.0 Question
I have a view-state that can return multiple events. For most of them, there is a common jave method I want to "evaluate." There are are few where I want to do something different. Each event, ...
1
vote
2answers
2k views
c:foreach using List: Must evaluate to a Collection, Map, Array, or null
So I'm trying to loop over a List<MyClass> for display in the view of my spring webflow application. However I get the error Must evaluate to a Collection, Map, Array, or null.
<c:forEach ...
1
vote
1answer
300 views
Is Spring ever going to combine MVC and WebFlow?
I thought I read Juergen Holler somewhere once in the past say that a future goal of Spring was to combine Spring MVC and WebFlow...
Is this still the case?
At the moment they still seem to be ...
1
vote
3answers
933 views
In Spring Webflow unit test, how do you assert that a view state has a view of a given name?
I'm developing a Spring webflow, trying to use TDD so I've extended AbstractXmlFlowExecutionTests. I can't see an obvious way to assert what I would have thought would be a simple thing: that a view ...
1
vote
2answers
2k views
How to solve refreshing issues in Facelets and Spring Web Flow?
For my particular project, I'm using Facelets (1.1.14), MyFaces (1.2.3), and Spring Web Flow (2.0.3). My IDE is JDeveloper 10.1.3.3. My browser is IE6 (work requirement).
Okay...ran into a very ...
1
vote
1answer
534 views
What is the best documentation for snapshots and flow repositories in Spring Web Flow?
I'm looking for more and better documentation about snapshots, flow repositories, and flow state serialization in Spring Web Flow. Available docs I've found seem pretty sparse. "Spring in Action" ...
1
vote
3answers
364 views
Accessing a bean with a dot(.) in its ID
In a flow definition, I am trying to access a bean that has a dot in its ID
(example: <evaluate expression="bus.MyServiceFacade.someAction()" />
However, it does not work. SWF tries to find a ...
0
votes
1answer
14 views
Is there a way to test the model that is passed to a webflow's end-state?
I have a spring webflow that I would like to test that certain values make it to the model that gets handed to the end-state. During the flow I would just check the flowscope variables, but after the ...
0
votes
1answer
81 views
How to pass exception to the method of the method in Spring Webflow?
The problem with the transmission of the exceptions in the Spring WebFlow 3
The pre-define the method throw an exception like the following:
public class MyBusinessException extends ...
0
votes
1answer
37 views
Spring Webflow - Access conversation-scoped item in Converter class
I'm trying to implement a Converter in Spring 3 (using Webflow). The scenario is that I'm showing a form:select tag with a list of Competition objects. On submission of the form I want the Converter ...
0
votes
1answer
140 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
1answer
53 views
Java spring webflow. Tomcat can't find view file
I have big problem. When i do apply to web flow by id, it goes into it but later view state returns 404 Error. Flow xml file is in jar. Jar file is loaded on execution, but i cant understand why ...
0
votes
0answers
71 views
Spring web flow: the flow XMLs are not being registered
I am using spring webflow and I have registered all the flow xmls in the webflow.xml like this
<!-- The Flow handler adapter, to handle flows request recieved by the dispatcher servlet ...