Deferred binding failed error when adding presenter with GWT Platform

Go To StackoverFlow.com

0

I am not sure why I get this error:

Caused by: java.lang.RuntimeException: Deferred binding failed for 'com.mygwt.client.core.FrameView$Binder' (did you forget to inherit a required module?)

Although the View and Presenter java files have the same code pattern as with the working Views and Presenter I have in my code.

2012-04-04 17:25
by xybrek
What could be causing this? Here is the complete error log: http://pastebin.com/SwzRYX9 - xybrek 2012-04-04 17:28


1

Your client code is using external JARs and they require to be inherited in the main module for GWT

You need to add entry for this API in your gwt.xml

<inherits name='com.mygwt.client.core' />
2012-04-05 04:52
by Hardik Mishra
Ads