Are you currently using the Command Pattern in combination with RequestFactory? I\'d like to use it but since RequestFactory doesn\'t allow inheritance, I\'m not sure how to do it.开发者_运维技巧
I upgraded to GWT 2.2.0 with RequestFactory - I have a TreePanel and I want to get some ModelData instances from server to populate it.
I have a text field that I want to save periodically as users type in it.I\'d like to hook it into my existing RequestFactoryEditorDriver framework, but I can\'t think of a way to do so.The trouble is
I use Long ids in my entities, not only to store them in the datastore, but to reference other entities.Now, I\'m using RequestFactory to create() objects on the client and persist them, but I need a
I\'ve a multi-module GWT project and I\'d like 开发者_Go百科to use ServiceLocators. I have 3 modules:
I have my OrganizationRequestContext interface, which works great: @Service(OrganizationDAO.class) public interface OrganizationRequestContext extends RequestContext
My GWT app has ten different kinds of entities.Right now I use plain old DTOs and transport them over GWT-RPC.This works well for cases like startup - I can pack them all into a single request.
I have a POJO that is used with GWT\'s RequestFactory and an associated proxy. The POJO has both static methods (list()) and instance methods (persist()) which need access to my database. My database
I need to use GWT with a service-based domain layer - not beans with DAOs. Is the GWT 2.1 architecture with MVP and RequestFactory fitted for this? Or should I stay w开发者_开发知识库ith RPC?
Can RequestFactory handle composite primary keys? The documentation mentions that entities must implement getId(); how should this be implemented in the 开发者_Python百科case where entities do not h