My environment
Eclipse: Version: 3.0.1
My Eclipse: Version: 3.8.4
OS: Win XP Professional
JSDK: 1.4.2
When I put a breakpoint in a scriptlet in a JSP, start my web application, the debugger stops at
<html:html locale=”true”>
Then I hit F6 to ‘Step Over, the debugger stops at
</html:html>
As you can see, the scriptlet is skipped completely. How can I debug the scriptlet line by line as if debugging in a Java file?
Thanks!
xsun