GWT - no urls in development mode tab
What could be the reason for not showing any urls to html files while debugging the GWT project? The tab is empty, it is not possible to debug any of the pages that are stored in 'war' directory.
I guess it is all 开发者_JAVA百科about the configuration. Thank you for any hints on how to fix that.
The reason for this is lack of web app nature. Add to .project file the following line:
<natures>
...
<nature>com.google.gdt.eclipse.core.webAppNature</nature>
...
</natures>
精彩评论