本文介绍了GWT程序没有运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我运行我的项目时,出现以下错误:
无法找到或加载主类com.google.gwt.dev.GWTShell



I已经安装了带有sdk和GWT设计器的Google插件。
我不明白,因为这个错误发生了什么?

解决方案

com.google .gwt.dev.GWTShell 已弃用,不再用于以后的GWT版本。


$ b 是用于启动GWT开发模式。



参考资料 -


    简单编译和调试指南 nofollow> https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging


  1. 高级 -



When I run my project I get the following error:Could not find or load main class com.google.gwt.dev.GWTShell

I have already installed the google plugin with the sdk's and GWT designer.I am not understanding due to what this error is occuring?

解决方案

com.google.gwt.dev.GWTShell is deprecated and no longer used in later versions of GWT.

com.google.gwt.dev.DevMode is the one to be used for launch GWT Dev Mode.

References -

  1. Simple Compiling and Debuggig - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging

  2. Advanced SuperDevMode - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging#SuperDevMode

这篇关于GWT程序没有运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 08:08