Deferred binding failed

前端 未结 4 491
自闭症患者
自闭症患者 2021-01-15 01:13

My application is throwing:

java.lang.RuntimeException: Deferred binding failed for \'com.mygwtapp.client.gin.ClientAppGinjector\' (did you forget to inheri         


        
4条回答
  •  孤街浪徒
    2021-01-15 01:56

    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)

提交回复
热议问题