Tagged Questions
4
votes
2answers
1k views
grails web flow exception handling
In my Grails app, I have defined the following (simplified) web flow
def registerFlow = {
start {
action {RegistrationCommand cmd ->
try {
...
1
vote
2answers
318 views
Problem with webflow(s) in Grails
I've just come across a rather odd problem whilst testing my applications webflows.
I have two seperate webflows that are accessed once a user logs in depending on whether the user is male or ...