You will not see the JSP file in your browser, since the JSP servers are interpreted there and eventually turn into HTML code, which is then sent to your browser. In Chrome Dev Tools, on the Sources tab, the page itself (your page layout) should be indicated in the list of sources on the left (it can be called what you called your page, or it can be called something common, for example (program) ). You can find your JavaScript code there (since the JS that you put in the JSP should have ended up being displayed on the page), and you should be able to place breakpoints in it and do something else that could be simple the .js file.
ajp15243
source share