Questions tagged [grails-webflow]

Spring Web Flow Plugin for GRails

Plugin that provides Spring Web Flow integration in


The sources can be found here on Github.

The documentation can be found here in the official Grails user guide.

8 questions
2
votes
1 answer

grails spring webflow -- log4j configuration not working within the flow closure

I have a very simple demo for grails spring webflow plugin: class MyController { def index() { log.debug(">>>>>>>>>>>>>>>>>>>>It works in a method") test() } def test = { log.debug(">>>>>>>>>>>>>>>>>>>It works in a closure") } def…
DeppDeng
  • 23
  • 3
1
vote
0 answers

Webflow execution id missing when using g:link

We have recently upgraded a project from grails version 2.3.11 to 2.5.5. In the process the webflow plugin was updated from 2.0.8.1 to 2.1.0. To controll webflow I use the g:link tag, like this: Foo action Before the…
Nico O
  • 13,762
  • 9
  • 54
  • 69
1
vote
0 answers

Grails3 Webflow - Is there any working example?

I am currently working with grails trying to setup a webflow. I used this (quite) old example: https://github.com/grails-samples/book-flow When I run my grails app and want to start the flow, I just get the error: Error: Page Not Found (404) …
user40369
  • 130
  • 8
1
vote
0 answers

Grails webflow - redirect to payment gateway and resume

I am creating a flow, where user would be redirected to a payment service and when he returns back to flow after completing payment,the flow should be resumed to next step. Graild docs says, redirect ends the flow. Is there a way to achieve this…
Sudhir N
  • 4,008
  • 1
  • 22
  • 32
0
votes
1 answer

grails webflow notserializableexception

Grails upgrade from 1.3.7 to Grails 2.1.0. Grails run-app executed. No errors. Call to webflow action throws GrailsExceptionResolver error. States a grails webflow object isn’t serializable. I have navigated all classes to ensure all have…
0
votes
0 answers

Grails withForm gives NullPointerException

I am using Grails 2.3.11. Have included duplicate form submission prevention mechanism by using withForm clause. Token is been passed correctly. Thing is when request is been handled, withForm clause throws NullPointerException. Form is been…
Parth Bhagat
  • 509
  • 1
  • 11
  • 24
0
votes
0 answers

grails web flow doesn't work

start{ on('next'){.... }.to "connectusers" } connectusers { on("next").to "congrats" } congrats() this flow doesn't work but if I run each step alone it's ok Work: start{ on('next'){.... }.to…
0
votes
0 answers

web flow don't recognize domainClass.list()

When calling this function in a webflow step: domainClass.findAllByIdInList(givenList) I get a null pointer exception. When executing: domainClass.list() I get nothing. I tried to pass this code to the server and get the same exception. Why is…