Kevin
Kevin

Reputation: 6292

Running GWT project from intelliJ IDEA 11

I was trying to debug a GWT project in intelliJ IDEA 11.

I can test the same project in command line using; ant devmode.

However, after i setup a intelliJ configuration and pressed debug, the page produced was:

HTTP ERROR: 404
NOT_FOUND
RequestURI=/StockWatcher.html

Powered by Jetty://

I am very new to GWT. Can someone help me with this?

Regads

Here is the screenshot: enter image description here

Upvotes: 1

Views: 4757

Answers (1)

trevorism
trevorism

Reputation: 411

It's easiest to run a project in Development Mode from a war folder.

  1. Create a war folder under the project root.
  2. Add war/WEB-INF/web.xml if using RPC
  3. Add -war <absolute path to war> to Dev Mode parameters.
  4. Run

Upvotes: 7

Related Questions