Cezar Apulchro wrote:How I do set breakpoints in jsp page?
Remember that JSP has nothing to do with the browser. JSP is a templating language that generates an HTML page on the server that gets sent to the client. What you see on the browser is the result of processing the JSP page on the server.
See
this article for more information on how JSP is processed.
You set breakpoints using DevTools in webkit browsers, and similar tools in other browsers.
Trying to debug JavaScript without browser dev tools is like, well, this...
