I am new to GWT and MVP and have explored a few libraries (gwt-sl, gwt-presenter,gwt-dispatch) and frameworks (smartgwt ..) and i am getting very confused.
I am using GWT RequestFactory. When I am in a normal RPC class that extends RemoteServiceServlet I can access the current request using this.getThreadLocalReq开发者_JAVA技巧uest().
If I have a PersonProxy {String getName(); PersonProxy getParent();} and I try to load it from server through a RequestFactory provided Request object, it crashes with stack overflow error.
In order to get GWT RequestFactory running with Grails, I am using the following approach: class GwtController extends RequestFactoryServlet {
I\'m using an AutoBeanFactory outside of RequestFactory to transform objects to and from JSON.It\'s working really well, but I\'ve just added a type of Object that is crashing the codex with a NullPoi
I am developing an application to collect 开发者_Go百科questions (class name Question) and answers.
I have RequestFactory with some request interface public interface FooRequest extends RequestContext {
I have something like this: request.findAllProjects().fire(new ExtReceiver<List<ProjectProxy>>() {
Is there a part of RequestFactory classes I can override to provide automatic c开发者_如何学编程aching for some requests?I could cache outside RF, of course, but I\'d like to do it via overriding to b
I was reading about this EntityProx开发者_运维技巧y feature in GWT 2.1+ and was wondering if you can use this proxy mechanism to avoid having to create DTOs and combine with regular RPC calls?