I am using Java 1.6, Spring 3.4, Spring Webflow 2.3.2 and Tomcat 7. I am trying to debug a JSP page that uses EL expressions, for example:
<c:if test="${myObject.myThing == SomeClass.ENUMVALUE.myvalue}" >
The myObject is passed as an object of the Webflow model. I have a breakpoint set on this line and I can reach and break it, but everything that I try to βobserveβ or βevaluateβ gives me an error message. I get either
${myObject.myThing == SomeClass.ENUMVALUE.myvalue}: Invalid Expression myObject.myThing: Type is unknown for 'myObject' (MyCorrectType) myObject: Cannot find local variable 'myObject'
How can I find this model object? What does it mean when it reaches the JSP page?
java spring spring-webflow jsp
user3120173
source share