Hi I have a spring bean named "connection" - how can I reference that explicitly in a SpEL expression from webflow - by explicitly I mean I don't want SpEL to try and find any other variables named "connection" which may exist in webflow scope - this is what I'm currently doing:
<action-state id="initialise-connection">
<evaluate result="flowScope.initialisedConnection" expression="connection"/>
I've read about prefixing with "@" to only target beans - what is the right practice and how do I do it?