I am using gwt 2.6.0 to develop web application. Using super dev mode to run my application in development mode.
I could not understand how to use break point in super dev mode so that i can debug my code step by step (line by line).
I am using gwt 2.6.0 to develop web application. Using super dev mode to run my application in development mode.
I could not understand how to use break point in super dev mode so that i can debug my code step by step (line by line).
This is JavaScript, so you use JS dev tools. And it has source maps (make sure to turn it on in your dev tool if not already), so you can actually see, set breakpoints in, and debug step by step in your Java code.
Some IDEs have integrations too, IntelliJ IDEA Ultimate can connect to Chrome or Firefox and supports source maps so you can debug right from the IDE. In Eclipse, you'd need the SDBG plugin, and it only supports Chrome remote debugging protocol.
The one thing you'll likely miss is variable inspection (watch, etc.).