0
votes
3answers
36 views
Grails Webflow - keeping things *out* of flow scope
I'm missing something....
I have a Grails webflow that looks like this:-
def childFlow = {
start {
action {
def targets = []
T …
0
votes
1answer
30 views
Spring webflow validation
Hi, complete and utter newbie on spring webflow (and indeed, spring mvc).
30 minutes in... got the first page of my flow appearing, which happens to be a captcha, an input field an …
0
votes
1answer
69 views
Faces conversion service is not found for converting ‘dataModel’
While creating my first swf application with JSF integration, I get the following error : Unable to load class 'dataModel' when parsing my flow definition on the first request.
It …
1
vote
1answer
70 views
Inheritance and subflows with Spring WebFlow in grails
Spring WebFlow supports some advanced reuse features like flow inheritance and subflows. Using this features in SWF xml definitions is pretty easy, for example:
<flow parent="p …
0
votes
1answer
73 views
Spring MVC and WebFlow param autobinding
Hi all,
I've a Spring MVC controller mapped to the url /blah/abc/index that is defined like
@RequestMapping(method = RequestMethod.GET)
public void index(MyObj myObj, Model model …
2
votes
2answers
186 views
grails web flow exception handling
Hi,
In my Grails app, I have defined the following (simplified) web flow
def registerFlow = {
start {
action {RegistrationCommand cmd ->
…
0
votes
3answers
295 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 …
0
votes
2answers
579 views
How do I write a custom converter in Spring Web Flow 2?
Hello. I am using Web Flow 2.0.7 with Spring MVC and Hibernate.
My problem is about custom converters for my custom types and database connection from within my converter.
Let's …
1
vote
1answer
344 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 o …
0
votes
1answer
99 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 s …
0
votes
1answer
145 views
Question regarding Spring Webflow 2.0 from a newbie …
Hello,
I'm new to the Spring MVC Framework and Webflow, and ofcourse, I've been thrown on a project involving these technologies. I'm having a problem that I can't get answered on …
1
vote
1answer
75 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. …
1
vote
2answers
428 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 nu …
0
votes
1answer
317 views
Eclipse Webflow IDE
I tried using the Spring IDE plugin (webflow) for Eclipse. It hangs on me. Anytime I Spring-enable a project, and open a flow definition file, Eclipse crawls to a halt. Each operat …
2
votes
3answers
1k 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 dire …
