Tagged Questions

2
votes
2answers
193 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 -> try { …
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 direct me to a tutorial …
2
votes
1answer
945 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 …
1
vote
1answer
78 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="parent"> …
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. Each event, …
1
vote
3answers
181 views

Grails web flow

Hi, Is there any way to pass model data to a view state? Consider the following example view state: class BookController { def shoppingCartFlow = { showProducts { on("checkout").to …
1
vote
2answers
444 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
350 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 …
1
vote
2answers
736 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
1answer
304 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
226 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
39 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 and a submit button. …
0
votes
3answers
48 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 = [] Target.list().each …
0
votes
2answers
80 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 appears that the …
0
votes
1answer
86 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) {...} Now, MyObj …

1 2 next
15 30 50 per page