i am attempting to integrate spring webflow (2.0.8) into an existing spring mvc application.
my jsp pages are not resolving flowScope variables in ${}
for example, my jsp code:
jsp output displays:Code:<tr> <th>test value:</th> <td><c:out value="${testString}"></c:out></td> <td><INPUT TYPE=TEXT SIZE=20 value = ${testString}> </td> <td>${testString} </td> </tr>
jslt core is included on my jsp and is evaluating as expected:Code:testvalue: ${testString} ${testString} ${testString}
other flowScope variables are evaluating correctly when attached to the <form:select tagCode:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> ... <c:if test="true"> true stuff here </c:if> <c:out value="plain old c:out here!"></c:out>
what am i missing that is preventing flowScope variables to be printed to the jsp view using the ${}Code:<td> <form:select path="manufacturerId" items="${manufacturers}" itemLabel="name" itemValue="id"></form:select> </td>
???


Reply With Quote