I have a typical gwt project, but I use some methods of rewriting URLs, such as URLs:
www.mysite.com/johndoe
www.mysite.com/janedoe
all get my main project.jsp file system. This works great when deployed.
When I run in hosting mode, this is a general bummer because changing the URL in the browser breaks the link with debugging in the hosting mode, so when I make changes to the source in eclipse and update, these changes are not shown right away. I need to recompile the application and restart, and we all know how long it will take.
Is there a way to somehow make the host-mode environment recognize that the same webapp is being served at these different URLs and just reconnect the debug connection?
We basically get:
http:
when starting the placement mode, I would like to:
http:
to just connect to the debugger if possible.
thank
source
share