ArcBees / GWTP

A complete model-view-presenter framework to simplify your next GWT project.
Other
335 stars 132 forks source link

Calling RestDispatchAsyncModule.Builder.core().responseDeserializer() has no effect on the binding #826

Closed emweber closed 6 years ago

emweber commented 7 years ago

I want to replace the ResponseDeserializer but that does not work: new RestDispatchAsyncModule.Builder().core().responseDeserializer(xxx)

From the call hierarchy at configure() time, one can see that configureDispatch() calls builder.getCoreModule() calls core(), which creates a new CoreModuleBuilder object so all settings made through the call of responseDeserializer or other methods is lost.

emweber commented 7 years ago

Not quite sure whether this is a bug. After deleting the %TEMP%\gwt-codeserver-*.tmp dirs and restarting my application, everything works as expected.

Chris-V commented 6 years ago

Closing as this seems resolved.