如何设置Eclipse GWT-Maven项目的开发模式?
我在 Win XP 上使用 Java 6 的 Eclipse Indigo。我有 Maven 3.0.3 和一个 GWT (2.1) 项目,我已将其导入到 Eclipse 中。如何创建将在开发模式下运行 GWT 项目的运行配置?我尝试了具有以下目标的运行配置:
clean gwt:run
但这无法在调试模式下运行,因为我的断点在进入“onModuleLoad”方法后永远不会被触发。
谢谢,-戴夫
I'm using Eclipse Indigo on Win XP with Java 6. I have Maven 3.0.3 and have a GWT (2.1) project, which I have imported into Eclipse. How do I create a run configuration that will run the GWT project in develpoment mode? I tried a run configuration with these goals:
clean gwt:run
But this fails to run in debug mode, since my breakpoint immediately upon entering the "onModuleLoad" method never gets triggered.
Thanks, - Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否看过 http://code.google.com/ intl/fr-FR/eclipse/docs/faq.html#gwt_with_maven ?
请遵循“如果您确实无法使用 Eclipse for Java EE”步骤以获得最佳体验。
Have you seen http://code.google.com/intl/fr-FR/eclipse/docs/faq.html#gwt_with_maven ?
Follow the "if you'really not able to use Eclipse for Java EE" steps for best experience.
您应该使用以下命令运行它:
gwt:debug
有关目标的更多信息,请检查 gwt-maven-插件。
You should run it with:
gwt:debug
For more information about goals check gwt-maven-plugin.