My application is throwing:
java.lang.RuntimeException: Deferred binding failed for \'com.mygwtapp.client.gin.ClientAppGinjector\' (did you forget to inheri
I had the same problem, I resolved lom adding the following libraries:
In your ".gwt.xml" file, add the following line:
<inherits name="com.google.gwt.inject.Inject"/>
I had the same problem. My getter method of Boolean object called getBooleanObject()
instead of isBooleanObject()
. Class JsonEncoderDecoder
looked for method called isBooleanObject()
, didn't find him, compilation failed. (gwt 2.8.0)
I've had the same error message during runtime. When I tried "Google > GWT Compile" the stack trace helped me better. My problem was that the service interface used a class that wasn't serializable.