How can I launch more than one debug session in Eclipse from a single click?

后端 未结 3 2049
旧巷少年郎
旧巷少年郎 2020-12-10 06:47

I\'m currently writing a GWT application through Eclipse. Eclipse is used for development but I use the m2eclipse plugin and a Maven pom.xml with the GWT plugin to build &am

3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-10 07:37

    Why are you launching like this? Can't you just launch it by GWT plugin? Go to Run Configurations -> Web Application (the blue circle with "g" inside) and create new Run Configuration.

    In it, in Main tab, enter (or select) your project, and enter com.google.gwt.dev.DevMode in Main class.

    In Arguments enter -remoteUI "${gwt_remote_ui_server_port}:${unique_id}" -logLevel INFO -port 8888 -war path_to_your_dir_with_WEB-INF_directory com.package.your.Module

提交回复
热议问题