Hi

Im trying to integrate spring web flow 2.3.0 into an existing spring mvc application. Ive got the libraries, updated classpath, modified existing configuration files, etc and created a quick test with a link that should link to another simple jsp using web flow.

At first I thought I needed to use JBoss EL but realized with web flow 2.3, it should use Spring EL. I do not see a specific Spring EL library to download.

The current result is that this
<a href ="${flowExecutionUrl}&_eventId=savings_POC">Lin k to Webflow POC</a>

is rendering to this:
<a href ="&_eventId=savings_POC">Link to Webflow POC</a>

So, tag is not getting rendered. What kinds of things would you check? Thanks