I have the following configuration in the eclipse
- Created a tomcat 7.0 server instance from the servers view.
- Created a sample web application and deployed in the server through maven-tomcat-plugin and tested it in the browser ( started the server by right clicking the server from the server view and selected start )
- Tried to configure the remote debugging settings in the created server instance using JPDA options,i added the env variables in the server setting.
- i could not connect the debugger to the server when i start the server from the eclipse as like previously.
- But it connected seamlessly when i start the directly from the installation directory using the command prompt as like
catlina.bat jpda start
- After that i tried this I started the server instance by ( started the server by right clicking the server from the server view and selected DEBUG mode)
- I got the Break points in the code and even Hot Code replacement working!!!
- What goes wrong when i tried jpda options for the remote debugging with the created server instance in the eclipse?
- How the debug option and Hot Code replacement works with the server instance?Is this remote debugging or something else?Can you explain on this one?