Hi,
In my Grails app, I have a bean stored in flow scope under a key that is dynamically generated. In a GSP I want to retrieve the bean. Assume that the key of the bean is the current Date as a String (though it's not really).
If in my GSP I use something like
${new Date().getDateString()}
then this will render the current date, but what I want to do is retrieve the bean from flow scope with this key.
Thanks, Don