gwt错误集锦

通常情况下不弹出缩主浏览器或手动点击缩主浏览器,提示To launch an application, specify a URL of the form /module /file.html 并且在日志文件提示

[TRACE] Loading module ''

[ERROR] Invalid module name: ''

这些错误,基本情况则为启动页面参数没配,解决方法为:

选中工程项目名----右击-----选择run as----选择run configurations-----选择启动项-----选择arguments在program arguments填上-out tomcat\webapps\ROOT -style pretty -port 8888 public文件夹所在包名.启动页面的名字/启动页面的名字.html

 

若报如下错误:Finding entry point classes
   Unable to find type 'com.example.booksearch.client.BookSearch'
      Hint: Check that the type name 'com.example.booksearch.client.BookSearch' is really what you meant
      Hint: Check that your classpath includes all required source roots

 Failure to load module 'com.example.booksearch.BookSearch'
基本上则为源文件没加入.

解决方法:选中工程项目名----右击-----选择run as----选择run configurations-----选择启动项-----选择classpath---选中user entries点击右边的advanced.....选择add folders点击ok选中项目的所有src文件就可以

你可能感兴趣的:(html,tomcat,浏览器,gwt)