how can i redirect to the same state more than one time using web flow
ex:
on('submit'){
def destinationInstance = Destination.get(params.destination)
def destinationGroupsInstance = DestinationGroup.get(params.destinationGroups)
def h = destinationInstance.addToDestinationGroups(destinationGroupsInstance)
}.to('flowList')
...
I have CAS 3.4.3 in my pom. From Jasig CAS zip I included all configuration including login-webflow.xml
The same configuration was working for me when I built my application with CAS source. Currently I get an exception:
org.springframework.expression.spel.SpelParseException: EL1041E:(pos 33): After parsing a valid expression, there is...
I'm using the Grails Webflow plugin. Here are the domain objects I'm working with:
class Foo implements Serializable {
String fooProp1,
fooProp2
static constraints = {
fooProp2 nullable: false
}
}
class Bar implements Serializable {
Foo fooObject
static constraints = {
fooObject nullabl...