1

I have two related applications in separate modules, and sometimes I need to launch both.

This cannot be done because of obvious problem - matching ports:

  • Jetty http-server occupies 8888 port,
  • Server for debug purposes (on which port?).

that will be occupied by first launched application.

And there can be something else that I don't see...

So my question: how to launch several instances of gwt application, in relation to IntelliJ IDEA?

cybersoft
  • 1,453
  • 13
  • 31

1 Answers1

0

You can specify the port in the VM-properties in the instance of your Jetty-VM for example.

-Djetty.port=8100
Mayank Pandya
  • 1,593
  • 2
  • 17
  • 40
  • You can set different port number for code server also. check out this this link for further studies http://stackoverflow.com/questions/11692795/debug-gwt-on-tomcat-using-eclipse – Mayank Pandya Jun 11 '15 at 11:25