Reputation: 93
Is it possible to debug JSP and javascript codes?
I am a back end developer but for some reason I have to deal with JSP and javascript. I try to put a breakpoint but it doesn't work.
Alert is not an option since I want to see the flow of the code execution.
Upvotes: 2
Views: 1732
Reputation: 659
In terms of JavaScript code you have a few options as most main stream browsers come with JavaScript development tools. These tools provide features such as breakpoints and variable watching.
Some examples are:
I haven't got much experience in JSP myself but friends of mine who do recommend IntelliJ.
You can look further with google or checking out this topic from a previous question here: What is a good Jsp IDE
Upvotes: 1