Reputation: 151
I'm currently working on trying to get an existing Eclipse project built with Java EE and GWT to develop and run in IntelliJ IDEA. I'm trying to get SuperDevMode up and running but as soon as I try to pass into the DevMode parameter -src
, the output gives me
Unknown argument: -src
.
I've checked Use Super Dev Mode
in the Run/Debug Configurations
but I can't think of anything else that might get this to work. Has anyone been able to get SuperDevMode parameters working in Intellij?
Thanks!
Upvotes: 0
Views: 1254
Reputation: 179
Steps (GWT >= 2.7.0)
EX: -src src/main/java -launcherDir /home/santran/ionoff/client/src/main/webapp net.ionoff.center.IApp
(IApp.gwt.xml is in package net.ionoff.center)
Working directory: Path to your project (Ex: /home/santran/ionoff/client)
Apply -> close
Add your project to App server (tomcat or jetty ...)
Start app server, start your new Application in IntelliJ
Upvotes: 1